Examples of unregisterToolWindow()


Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

    }

    @Override
    public void projectClosed() {
        final ToolWindowManager twMgr = ToolWindowManager.getInstance(project);
        twMgr.unregisterToolWindow(PomManagerPanel.TITLE);
    }

    /**
     * Returns the POM manager's tool window.
     *
 
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

     *
     * @param project the project
     */
    public static void unregister(final Project project) {
        final ToolWindowManager toolMgr = ToolWindowManager.getInstance(project);
        toolMgr.unregisterToolWindow(NAME);
    }
}
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

     * Performs project cleanup tasks. Invoked by IDEA when the project is closed.
     */
    public void projectClosed()
    {
        ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(this.project);
        toolWindowManager.unregisterToolWindow(TOOL_WINDOW_ID);
    }

    /**
     * Creates the plugin UI within the project's tool window.
     *
 
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

  }


  private void unregisterToolWindow() {
    final ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(_project);
    toolWindowManager.unregisterToolWindow(getInternalToolWindowId());
  }


  public Project getProject() {
    return _project;
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

        return content;
    }

    public void unregisterToolWindow() {
        ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(project);
        toolWindowManager.unregisterToolWindow(TOOL_WINDOW_ID);
    }

    public void activate() {
        if (toolWindow != null) {
            toolWindow.show(new Runnable() {
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

    /**
     * fired when project closed
     */
    public void projectClosed() {
        ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(project);
        toolWindowManager.unregisterToolWindow(TOOL_WINDOW_ID);
    }

    /**
     * register REST Client tool window
     *
 
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

            console.dispose();
        }
        console = null;

        ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(project);
        toolWindowManager.unregisterToolWindow(TOOLWINDOW_ID);
    }

    private void registerToolWindow() {
        ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(project);
        ToolWindow toolWindow = toolWindowManager.registerToolWindow(TOOLWINDOW_ID, false, ToolWindowAnchor.BOTTOM);
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindowManager.unregisterToolWindow()

    unregisterToolWindow();
  }

  private void unregisterToolWindow() {
    ToolWindowManager toolWindowManager = ToolWindowManager.getInstance(project);
    toolWindowManager.unregisterToolWindow(TOOL_WINDOW_ID);
  }

  @NotNull
  public String getComponentName() {
    return COMPONENT_NAME;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.