Package org.trzcinka.intellitrac.view.toolwindow.tickets

Examples of org.trzcinka.intellitrac.view.toolwindow.tickets.TicketsTabForm


  public ToolWindowForm() {
  }

  private void createUIComponents() {
    tabbedPane = new JTabbedPane();
    ticketsTabForm = new TicketsTabForm();
    wikiTabForm = new WikiTabForm();
    helpTabForm = new HelpTabForm();
    tabbedPane.addTab(bundle.getString("tool_window.tabs.tickets"), ticketsTabForm.getRootComponent());
    tabbedPane.addTab(bundle.getString("tool_window.tabs.wiki"), wikiTabForm.getRootComponent());
    tabbedPane.addTab(bundle.getString("tool_window.tabs.help"), helpTabForm.getRootComponent());
View Full Code Here

TOP

Related Classes of org.trzcinka.intellitrac.view.toolwindow.tickets.TicketsTabForm

Copyright © 2018 www.massapicom. 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.