BorderFactory: createCompoundBorder(Border outsideBorder, Border insideBorder)
import java.awt.Color;
import java.awt.FlowLayout;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.border.Border;
import javax.swing.border.TitledBorder;
public class MainClass extends JFrame {
public MainClass(String name) {
getContentPane().setLayout(new FlowLayout());
JLabel labelTwo = new JLabel("www.java2s.com");
labelTwo.setBorder(BorderFactory.createEtchedBorder());
add(labelTwo);
JLabel labelThree = new JLabel("MatteBorder");
labelThree.setBorder(BorderFactory.createMatteBorder(10, 10, 10, 10, Color.pink));
add(labelThree);
JLabel labelFour = new JLabel("TitledBorder");
labelFour.setBorder(BorderFactory.createTitledBorder(BorderFactory.createMatteBorder(10, 10,
10, 10, Color.pink), "Title", TitledBorder.RIGHT, TitledBorder.BOTTOM));
add(labelFour);
JLabel labelSix = new JLabel("CompoundBorder");
Border one = BorderFactory.createEtchedBorder();
Border two = BorderFactory.createMatteBorder(4, 4, 4, 4, Color.blue);
labelSix.setBorder(BorderFactory.createCompoundBorder(one, two));
add(labelSix);
}
public static void main(String[] args) {
JFrame frame = new MainClass("javax.swing.JButton");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
Related examples in the same category
1. | BorderFactory: createBevelBorder(int type,Color highlight,Color shadow) | | |
2. | BorderFactory: createEtchedBorder() | | |
3. | BorderFactory: createEmptyBorder(int top,int left,int bottom,int right) | | |
4. | BorderFactory: createLineBorder(Color color) | | |
5. | BorderFactory: createLineBorder(Color color, int thickness) | | |
6. | BorderFactory: createLoweredBevelBorder() | | |
7. | BorderFactory: createMatteBorder(int top, int left, int bottom, int right, Color color) | | |
8. | BorderFactory: createRaisedBevelBorder() | | |
9. | BorderFactory.createTitledBorder(String text) | | |
10. | BorderFactory: createTitledBorder(Border b, String t, int j, int p) | | |