List of usage examples for com.intellij.openapi.wm ToolWindow setStripeTitle
void setStripeTitle(@NotNull String title);
From source file:com.google.idea.blaze.base.console.BlazeConsoleToolWindowFactory.java
License:Open Source License
@Override public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) { String title = Blaze.buildSystemName(project) + " Console"; toolWindow.setTitle(title);/* w w w . j av a2s . com*/ toolWindow.setStripeTitle(title); BlazeConsoleView.getInstance(project).createToolWindowContent(toolWindow); }