Constructor JSplitPane(int newOrientation, boolean newContinuousLayout, Component newLeftComponent, Component newRightComponent)
Member of: javax.swing.JSplitPane
[api documentation ] [ main menu]

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

1 daqletViewSplit_ = new JSplitPane
2 JSplitPane split = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
3 JSplitPane split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true,
4 listSplitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, true, tableView, columnView);
5 JSplitPane inner = new JSplitPane(
6 JComponent split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
7 viewPanel=new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
8 jsp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, false, right, left);
9 splitPane = new JSplitPane(split,
10 JSplitPane rselSortSplit=new JSplitPane(JSplitPane.VERTICAL_SPLIT,true,rselPanel,sortPanel);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.