com.businessobjects.rebean.wi
Class StyleType

java.lang.Object
  extended by com.businessobjects.rebean.wi.StyleType

public final class StyleType
extends java.lang.Object

A set of bit flags for font style.

See Also:
Font

Field Summary
static int BOLD
          Bold font.
static int ITALIC
          Italic font.
static int PLAIN
          Plain font.
static int STRIKETHROUGH
          Striked through font.
static int UNDERLINE
          Underlined font.
 
Constructor Summary
StyleType()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PLAIN

public static final int PLAIN
Plain font. This can be used to unset all other bit flags using Font.setStyle(StyleType.PLAIN).

See Also:
Constant Field Values

BOLD

public static final int BOLD
Bold font.

See Also:
Constant Field Values

ITALIC

public static final int ITALIC
Italic font.

See Also:
Constant Field Values

UNDERLINE

public static final int UNDERLINE
Underlined font.

See Also:
Constant Field Values

STRIKETHROUGH

public static final int STRIKETHROUGH
Striked through font.

See Also:
Constant Field Values
Constructor Detail

StyleType

public StyleType()