java.lang.Object
javax.swing.border.AbstractBorder
javax.swing.border.BevelBorder
javax.swing.plaf.BorderUIResource.BevelBorderUIResource
- All Implemented Interfaces:
- Serializable,- Border,- UIResource
- Enclosing class:
- BorderUIResource
public static class BorderUIResource.BevelBorderUIResource
extends BevelBorder
implements UIResource
A bevel border UI resource.
- 
Field SummaryFields declared in class javax.swing.border.BevelBorderbevelType, highlightInner, highlightOuter, LOWERED, RAISED, shadowInner, shadowOuter
- 
Constructor SummaryConstructorsConstructorDescriptionBevelBorderUIResource(int bevelType) Constructs aBevelBorderUIResource.BevelBorderUIResource(int bevelType, Color highlight, Color shadow) Constructs aBevelBorderUIResource.BevelBorderUIResource(int bevelType, Color highlightOuter, Color highlightInner, Color shadowOuter, Color shadowInner) Constructs aBevelBorderUIResource.
- 
Method SummaryMethods declared in class javax.swing.border.BevelBordergetBevelType, getBorderInsets, getHighlightInnerColor, getHighlightInnerColor, getHighlightOuterColor, getHighlightOuterColor, getShadowInnerColor, getShadowInnerColor, getShadowOuterColor, getShadowOuterColor, isBorderOpaque, paintBorder, paintLoweredBevel, paintRaisedBevelMethods declared in class javax.swing.border.AbstractBordergetBaseline, getBaselineResizeBehavior, getBorderInsets, getInteriorRectangle, getInteriorRectangle
- 
Constructor Details- 
BevelBorderUIResourcepublic BevelBorderUIResource(int bevelType) Constructs aBevelBorderUIResource.- Parameters:
- bevelType- the type of bevel for the border
 
- 
BevelBorderUIResourceConstructs aBevelBorderUIResource. The bevel outer highlight color and bevel inner highlight color will be derived from specified highlight color and bevel outer shadow color and bevel inner shadow color will be derived from specified shadow color.- Parameters:
- bevelType- the type of bevel for the border
- highlight- the color to use for the bevel highlight
- shadow- the color to use for the bevel shadow
 
- 
BevelBorderUIResource@ConstructorProperties({"bevelType","highlightOuterColor","highlightInnerColor","shadowOuterColor","shadowInnerColor"}) public BevelBorderUIResource(int bevelType, Color highlightOuter, Color highlightInner, Color shadowOuter, Color shadowInner) Constructs aBevelBorderUIResource.- Parameters:
- bevelType- the type of bevel for the border
- highlightOuter- the color to use for the bevel outer highlight
- highlightInner- the color to use for the bevel inner highlight
- shadowOuter- the color to use for the bevel outer shadow
- shadowInner- the color to use for the bevel inner shadow
 
 
-