Constructor JSplitPane(int newOrientation)
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 splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
2 configCompPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
3 _splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
4 JSplitPane split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
5 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
6 JSplitPane treeAndMain = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
7 mySplitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
8 JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
9 JSplitPane jSplitPane1 = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.