use of com.intellij.lang.ant.config.explorer.AntExplorer in project intellij-community by JetBrains.
the class AntToolWindowFactory method createToolWindowContent.
@Override
public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) {
AntExplorer explorer = new AntExplorer(project);
final ContentManager contentManager = toolWindow.getContentManager();
final Content content = contentManager.getFactory().createContent(explorer, null, false);
contentManager.addContent(content);
Disposer.register(project, explorer);
}
Aggregations