Where Am I? Class Hierarchy (JFC) All Classes (JFC)

Class com.sun.java.swing.BorderFactory

java.lang.Object
   |
   +----com.sun.java.swing.BorderFactory

public class BorderFactory
extends Object

Factory class for vending standard Border objects. Whereever possible, this factory will hand out references to shared Border instances.


Method Index

createBevelBorder(int)
createBevelBorder(int, Color, Color)
createBevelBorder(int, Color, Color, Color, Color)
createCompoundBorder()
createCompoundBorder(Border, Border)
createEmptyBorder()
createEmptyBorder(int, int, int, int)
createEtchedBorder()
createEtchedBorder(Color, Color)
createLineBorder(Color)
createLineBorder(Color, int)
createLoweredBevelBorder()
createMatteBorder(int, int, int, int, Color)
createMatteBorder(int, int, int, int, Icon)
createRaisedBevelBorder()
createTitledBorder(Border)
createTitledBorder(Border, String)
createTitledBorder(Border, String, int, int)
createTitledBorder(Border, String, int, int, Font)
createTitledBorder(Border, String, int, int, Font, Color)
createTitledBorder(String)

Methods

createLineBorder
 public static Border createLineBorder(Color color)
createLineBorder
 public static Border createLineBorder(Color color,
                                       int thickness)
createRaisedBevelBorder
 public static Border createRaisedBevelBorder()
createLoweredBevelBorder
 public static Border createLoweredBevelBorder()
createBevelBorder
 public static Border createBevelBorder(int type)
createBevelBorder
 public static Border createBevelBorder(int type,
                                        Color highlight,
                                        Color shadow)
createBevelBorder
 public static Border createBevelBorder(int type,
                                        Color highlightOuter,
                                        Color highlightInner,
                                        Color shadowOuter,
                                        Color shadowInner)
createEtchedBorder
 public static Border createEtchedBorder()
createEtchedBorder
 public static Border createEtchedBorder(Color highlight,
                                         Color shadow)
createTitledBorder
 public static TitledBorder createTitledBorder(String title)
createTitledBorder
 public static TitledBorder createTitledBorder(Border border)
createTitledBorder
 public static TitledBorder createTitledBorder(Border border,
                                               String title)
createTitledBorder
 public static TitledBorder createTitledBorder(Border border,
                                               String title,
                                               int titleJustification,
                                               int titlePosition)
createTitledBorder
 public static TitledBorder createTitledBorder(Border border,
                                               String title,
                                               int titleJustification,
                                               int titlePosition,
                                               Font titleFont)
createTitledBorder
 public static TitledBorder createTitledBorder(Border border,
                                               String title,
                                               int titleJustification,
                                               int titlePosition,
                                               Font titleFont,
                                               Color titleColor)
createEmptyBorder
 public static Border createEmptyBorder()
createEmptyBorder
 public static Border createEmptyBorder(int top,
                                        int left,
                                        int bottom,
                                        int right)
createCompoundBorder
 public static CompoundBorder createCompoundBorder()
createCompoundBorder
 public static CompoundBorder createCompoundBorder(Border outsideBorder,
                                                   Border insideBorder)
createMatteBorder
 public static MatteBorder createMatteBorder(int top,
                                             int left,
                                             int bottom,
                                             int right,
                                             Color color)
createMatteBorder
 public static MatteBorder createMatteBorder(int top,
                                             int left,
                                             int bottom,
                                             int right,
                                             Icon tileIcon)

Where Am I? Class Hierarchy (JFC) All Classes (JFC)