//PROGRAM 13-11 import java.awt.*; import java.awt.event.*; import javax.swing.*; class Page1 extends JPanel implements ActionListener { private JButton btn; public Page1() { btn = new JButton("Info Page #1"); btn.addActionListener(this); btn.setMnemonic('1'); add(btn); } public void actionPerformed(ActionEvent event) { if (event.getSource() == btn) { JOptionPane.showMessageDialog(null, "Ini adalah page ke-1"); } } } class Page2 extends JPanel { private JTextField tf; public Page2() { tf = new JTextField("Ini adalah contoh page kedua...", 20); add(tf); } } class DemoTabbedPane { public JTabbedPane tp; public DemoTabbedPane() { ImageIcon icon = new ImageIcon("/images/icon.jpg"); tp = new JTabbedPane(); tp.addTab("Page #1", icon, new Page1(), "Page pertama"); tp.addTab("Page #2", icon, new Page2(), "Page kedua"); tp.setLocation(0, 0); tp.setSize(new Dimension(290, 190)); } public void createAndShowGUI() { JFrame.setDefaultLookAndFeelDecorated(true); JFrame frame = new JFrame("Demo JTabbedPane"); frame.setLayout(null); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().add(tp); frame.setBounds(0, 0, 300, 200); frame.setLocationRelativeTo(null); frame.setVisible(true); } public static void main(String[] args) { javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { DemoTabbedPane app = new DemoTabbedPane(); app.createAndShowGUI(); } }); } }