1 15 16 package swingwtx.swing.border; 17 18 import swingwt.awt.*; 19 20 public class LineBorder extends AbstractBorder implements Border { 21 public static Border createBlackLineBorder() { return new LineBorder(Color.BLACK, 1); } 22 public static Border createGrayLineBorder() { return new LineBorder(Color.GRAY, 1); } 23 public LineBorder(Color color) {} 24 public LineBorder(Color color, int thickness) {} 25 public LineBorder(Color color, int thickness, boolean roundedCorners) {} 26 } 27 | Popular Tags |