public @interface GuiInitSplitPane
initial settings for split-pane: determines the default component orientation of the attached type
@GuiIncluded
@GuiInits(splitPane = @GuiInitSplitPane(vertical=true)
tabbedPane = @GuiInitTabbedPane(noTab=true))
public class MyApp { //the created GUI components has the splitted-pane of "Pane1" and "Pane2",
// and the orientation of the split becomes vertical.
// The tabbedPane setting can suppress creating a tabbed-pane, instead force to create a split-pane
@GuiIncluded
public MySubPane1 getPane1() {
...
}
@GuiIncluded
public MySubPane2 getPane2() {
...
}
...
}
- Since:
- 1.8
- See Also:
-
Optional Element Summary
Optional Elements
-
Element Details
-
vertical
boolean vertical- Returns:
- indicating the split-pane orientation is vertical. the default is false
- Default:
false
-