/** JButtonのテスト */
import java.awt.*;
import javax.swing.*;
public class JButtonTest {
/** 最初に呼び出されるメソッド */
public static void main( String argv[] ) {
JFrame frame = new JFrame( "JButton Test" );
ImageIcon icon = new ImageIcon( "elephant.gif" );
JButton button = new JButton( "Elephant", icon );
frame.getContentPane().add( button, "Center" );
frame.pack();
frame.setVisible( true );
}
}