1 20 21 package org.armedbear.j; 22 23 import java.awt.Dimension ; 24 import javax.swing.JButton ; 25 26 public final class StandardButton extends JButton  27 { 28 public static final int DEFAULT_WIDTH = 80; 29 public static final int DEFAULT_HEIGHT = 24; 30 31 public StandardButton(String text) 32 { 33 super(text); 34 if (Editor.lookAndFeel == null) { 35 Dimension dim = new Dimension (DEFAULT_WIDTH, DEFAULT_HEIGHT); 36 setMinimumSize(dim); 37 setMaximumSize(dim); 38 setPreferredSize(dim); 39 } 40 } 41 } 42 | Popular Tags |