devdaily home | java | perl | unix | directory | blog


What this is

This file is part of the Tame Swing collection that we have compiled. All of the Java source code in these examples was created by Nobuo Tamemasa. As these examples have become hard to find on the internet, we have put them in one place here, supported by minimal advertising. In time we will include images of each running sample Java/Swing application.

The intent of having these files here is to help you learn Java and Swing by example, and Tame certainly created some terrific examples of the power of the Swing framework.

Other links

Keywords/tags

java, swing, example, sample, source, custom, tab, tabbed, pane, row

The source code

/* (swing1.1.1beta2) */
package tame.examples;

import java.awt.BorderLayout;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingConstants;

import tame.panel.SingleRowTabbedPane;

/**
@author Nobuo Tamemasa
@version 1.0 07/09/99
*/
public class SingleRowTabbedPaneExample1 extends JPanel {
  public SingleRowTabbedPaneExample1() {
    setLayout(new BorderLayout());

    SingleRowTabbedPane tabbedPane = new SingleRowTabbedPane(
      SingleRowTabbedPane.ONE_BUTTON, SwingConstants.RIGHT);

    String tabs[] = {"One", "Two", "Three", "Four", "Five",
                     "Six", "Seven","Eight","Nine", "Ten" };
    for (int i=0;i<tabs.length;i++) {
      tabbedPane.addTab(tabs[i], createPane(tabs[i]));
    }
    tabbedPane.setSelectedIndex(0);
    add(tabbedPane, BorderLayout.CENTER);
  }

  private JPanel createPane(String s) {
    JPanel p = new JPanel();
    p.add(new JLabel(s));
    return p;
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame("One button Example");
    frame.addWindowListener( new WindowAdapter() {
      public void windowClosing( WindowEvent e ) {
        System.exit(0);
      }
    });
    frame.getContentPane().add( new SingleRowTabbedPaneExample1() );
    frame.setSize( 250, 100 );
    frame.setVisible(true);
  }
}

Copyright © 1998-2009 DevDaily.com
All Rights Reserved.