Creating a Tabbed Pane int location = JTabbedPane.TOP; // or BOTTOM, LEFT, RIGHT JTabbedPane pane = new JTabbedPane(location); ImageIcon icon = new ImageIcon("image.gif"); // or null; pane.addTab("Tab Label", icon, panel, "Tool Tip Text");