FileDocCategorySizeDatePackage
TitledExample.javaAPI DocExample800Thu Oct 24 20:14:24 BST 2002None

TitledExample

public class TitledExample extends JPanel

Fields Summary
Constructors Summary
public TitledExample()

        super(true);

        this.setLayout(new GridLayout(1, 1, 5, 5));

        JLabel label = new JLabel("Titled Border");
        label.setHorizontalAlignment(JLabel.CENTER);

        TitledBorder titled = new TitledBorder("Title");
        label.setBorder(titled);

        add(label);
    
Methods Summary
public static voidmain(java.lang.String[] s)

         JFrame frame = new JFrame("Borders");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.setSize(200, 100);
         frame.setContentPane(new TitledExample());
         frame.setVisible(true);