FileDocCategorySizeDatePackage
WidthHack.javaAPI DocExample917Thu Oct 24 20:14:26 BST 2002None

WidthHack

public class WidthHack extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)


    JTextField tf = new JTextField("mm");
    tf.setPreferredSize( tf.getPreferredSize() );
    tf.setText(""); // Empty the field.

    JPanel pHacked = new JPanel();
    pHacked.setBorder(new javax.swing.border.TitledBorder("hacked 2 columns"));
    pHacked.add(tf);

    JPanel pStock = new JPanel();
    pStock.setBorder(new javax.swing.border.TitledBorder("stock 2 columns"));
    pStock.add( new JTextField(2) );

    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setLayout(new java.awt.GridLayout(0, 1));
    frame.getContentPane().add(pHacked);
    frame.getContentPane().add(pStock);
    frame.setSize(150, 150);
    frame.setVisible(true);
    tf.requestFocus();