Method addTab(String title, Icon icon, Component component, String tip)
Return type: void
Member of: javax.swing.JTabbedPane
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 _tabPane.addTab("Form", null, p, "Form View");
2 tabbedPane.addTab("Indexers", null, scroll, "Indexers available");
3 tabbedPane.addTab("Resources", null, scroll, "Resources available");
4 tabbedPane.addTab("Console", null, console_panel, "Jess console window");
5 mainPanel.addTab("General GUI", null, guiPanel, "General gui options");
6 addTab(name, icon, tc, toolTip);
7 addTab("Simple", null, simpleBorders, null);
8 tabbedPane.addTab(controller.getName(), createGroupIcon(controller), component, controller.getDescription());
9 jtpRoot.addTab(txt, ico, container, desc);
10 tabbedPane.addTab(resources.getString(
11 window.addTab (tabName.toString(), mTab.getIcon(), tabElement, mTab.getDescription());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.