Here you can find the source of standardJSplitPane(final JSplitPane splitPane)
public static void standardJSplitPane(final JSplitPane splitPane)
//package com.java2s; //License from project: Apache License import javax.swing.BorderFactory; import javax.swing.JSplitPane; public class Main { public static void standardJSplitPane(final JSplitPane splitPane) { splitPane.setDividerLocation(0.5); splitPane.setBorder(BorderFactory.createEmptyBorder()); splitPane.setOneTouchExpandable(true); splitPane.setContinuousLayout(true); }/*w w w .ja v a 2 s. c o m*/ }