Here you can find the source of createSplitPane(int orientation, Component left, Component right)
public static JSplitPane createSplitPane(int orientation, Component left, Component right)
//package com.java2s; //License from project: Open Source License import java.awt.Component; import javax.swing.JSplitPane; public class Main { public static JSplitPane createSplitPane(int orientation, Component left, Component right) { JSplitPane pane = new JSplitPane(orientation, left, right); return pane; }/*from w w w . ja va 2 s .c o m*/ }