public @interface GuiInitTabbedPane
initial settings for tabbled-pane: determines the pane of the attached type becomes tab or not.
@GuiIncluded
@GuiInits(tabgedPane = @GuiInitTabbedPane
(noTab=true))
public class MyApp { //the created GUI components always has the split-pane of "Pane1" and "Pane2", instead of a tabbed-pane.
@GuiIncluded
public MySubPane1 getPane1() {
...
}
@GuiIncluded
public MySubPane2 getPane2() {
...
}
...
}
- Since:
- 1.8
- See Also:
-
Optional Element Summary
Optional Elements
-
Element Details
-
noTab
boolean noTab- Returns:
- indicating suppress object-panes summrized as a tabbed pane. the default is false
- Default:
false
-