import java.awt.Container;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.border.TitledBorder;
public class MainClass {
public static void main(final String args[]) {
JFrame frame = new JFrame("Justified Titled Borders");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
TitledBorder leftBorder = BorderFactory.createTitledBorder("Left");
leftBorder.setTitleJustification(TitledBorder.LEFT);
JButton leftButton = new JButton();
leftButton.setBorder(leftBorder);
Container contentPane = frame.getContentPane();
contentPane.add(leftButton);
frame.setSize(300, 200);
frame.setVisible(true);
}
}
|