All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface symantec.itools.awt.BevelStyle

public interface BevelStyle
BevelStyle is an interface for components with borders that can be drawn different ways. The "raised" style makes the component appears raised above the surrounding area, the "lowered" style makes the component appear lowered, the "line" style draws a simple line around the component, and components with the "none" style have nothing drawn around them.


Variable Index

 o BEVEL_LINE
Defines the "line" shape border style.
 o BEVEL_LOWERED
Defines the "lowered" shape border style.
 o BEVEL_NONE
Defines the "none" shape border style.
 o BEVEL_RAISED
Defines the "raised" shape border style.

Method Index

 o getBevelStyle()
Gets the current border style.
 o setBevelStyle(int)
Sets the new border style.

Variables

 o BEVEL_LOWERED
  public final static int BEVEL_LOWERED
Defines the "lowered" shape border style. This makes the component appear lower than the surrounding area.

 o BEVEL_RAISED
  public final static int BEVEL_RAISED
Defines the "raised" shape border style. This makes the component appear raised above the surrounding area.

 o BEVEL_LINE
  public final static int BEVEL_LINE
Defines the "line" shape border style. This draws a simple line around the component.

 o BEVEL_NONE
  public final static int BEVEL_NONE
Defines the "none" shape border style. This indicates the component will have nothing drawn around its border.

Methods

 o setBevelStyle
  public abstract void setBevelStyle(int style)
Sets the new border style.

Parameters:
style - the new border style, one of BEVEL_LOWERED, BEVEL_RAISED, BEVEL_LINE, or BEVEL_NONE
See Also:
BEVEL_LOWERED, BEVEL_RAISED, BEVEL_LINE, BEVEL_NONE
 o getBevelStyle
  public abstract int getBevelStyle()
Gets the current border style.

Returns:
the current border style, one of BEVEL_LOWERED, BEVEL_RAISED, BEVEL_LINE, or BEVEL_NONE
See Also:
BEVEL_LOWERED, BEVEL_RAISED, BEVEL_LINE, BEVEL_NONE

All Packages  Class Hierarchy  This Package  Previous  Next  Index