Example usage for com.intellij.openapi.wm ToolWindowFactory interface-usage

List of usage examples for com.intellij.openapi.wm ToolWindowFactory interface-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.wm ToolWindowFactory interface-usage.

Usage

From source file FeatureEditorFactory.java

/**
 * Created by John Collier and Logan Kember on 5/26/2016. Copy
 */
public class FeatureEditorFactory extends Component implements ToolWindowFactory {
    private File xmlFile;
    private String wlpFolder;

From source file SimpleTODOFactory.java

/**
 * Created by Rune on 21-10-2015.
 */
public class SimpleTODOFactory implements ToolWindowFactory {
    public void createToolWindowContent(Project project, ToolWindow toolWindow) {
        Component component = toolWindow.getComponent();

From source file com.abelsky.idea.geekandpoke.ui.ComicsPanelFactory.java

/**
 * @author andy
 */
public class ComicsPanelFactory implements ToolWindowFactory {

    @Override

From source file com.android.tools.idea.assistant.AssistToolWindowFactory.java

public final class AssistToolWindowFactory implements ToolWindowFactory {
    private AssistSidePanel myAssistSidePanel;
    private String myActionId;

    public AssistToolWindowFactory(@NotNull String actionId) {
        myActionId = actionId;

From source file com.android.tools.idea.explorer.DeviceExplorerToolWindowFactory.java

public class DeviceExplorerToolWindowFactory implements DumbAware, ToolWindowFactory {
    public static final String TOOL_WINDOW_ID = "Android Device Explorer";

    @Override
    public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) {
    }

From source file com.android.tools.idea.gradle.AndroidModelToolWindowFactory.java

/**
 * Creates the contents of the "Android Model" tool window.
 */
public class AndroidModelToolWindowFactory implements ToolWindowFactory, DumbAware {
    @Override
    public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) {

From source file com.android.tools.idea.gradle.InternalAndroidModelToolWindowFactory.java

/**
 * Creates the contents of the "Android Model (Internal)" tool window.
 */
public class InternalAndroidModelToolWindowFactory implements ToolWindowFactory, DumbAware {
    @Override
    public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) {

From source file com.android.tools.idea.gradle.invoker.console.view.GradleConsoleToolWindowFactory.java

/**
 * Created the "Gradle Console" tool window.
 */
public class GradleConsoleToolWindowFactory implements ToolWindowFactory, DumbAware {
    public static final String ID = "Gradle Console";

From source file com.android.tools.idea.gradle.project.build.console.view.GradleConsoleToolWindowFactory.java

/**
 * Created the "Gradle Console" tool window.
 */
public class GradleConsoleToolWindowFactory implements ToolWindowFactory, DumbAware {
    public static final String ID = "Gradle Console";

From source file com.android.tools.idea.gradle.variant.view.BuildVariantToolWindowFactory.java

/**
 * Creates the contents of the "Build Variants" tool window.
 */
public class BuildVariantToolWindowFactory implements ToolWindowFactory {
    public static final String ID = "Build Variants";