Here you can find the source of createTabbedPane()
public static JTabbedPane createTabbedPane()
//package com.java2s; //License from project: Open Source License import javax.swing.JTabbedPane; public class Main { public static JTabbedPane createTabbedPane() { JTabbedPane tabbedPane = new JTabbedPane(); return tabbedPane; }/*ww w . ja v a 2s .c o m*/ }