|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.myfaces.trinidad.style.Style
org.apache.myfaces.trinidadinternal.style.CoreStyle
public abstract class CoreStyle
A CoreStyle object defines a set of visual (or aural) style properties. The CoreStyle interface exposes one method for retrieving properties: getParsedProperty(). getParsedProperty() takes a key object (eg. FONT_WEIGHT_KEY) and returns the parsed, typed, Java object which represents the property value. The type of the returned object is key-specific, eg. for FONT_WEIGHT_KEY, an java.lang.Integer is returned. For BACKGROUND_KEY, a java.awt.Color is returned.
| Field Summary | |
|---|---|
static ParsedPropertyKey |
BACKGROUND_KEY
Deprecated. Key for obtaining the Color object which corresponds to the style's "background-color" property. |
static java.lang.Object |
BOLD_FONT_WEIGHT
Deprecated. Constant for bold font weight. |
static ParsedPropertyKey |
FONT_FAMILIES_KEY
Deprecated. Key for obtaining the list of font family names for this style. |
static ParsedPropertyKey |
FONT_SIZE_KEY
Deprecated. This key is passed to Style.parseProperty() to obtain the font size for a Style. |
static ParsedPropertyKey |
FONT_STYLE_KEY
Deprecated. This key is passed to Style.parseProperty() to obtain the font style for a Style. |
static ParsedPropertyKey |
FONT_WEIGHT_KEY
Deprecated. This key is passed to Style.parseProperty() to obtain the font weight for a Style. |
static ParsedPropertyKey |
FOREGROUND_KEY
Deprecated. Key for obtaining the Color object which corresponds to the style's "color" property. |
static java.lang.Object |
ITALIC_FONT_STYLE
Deprecated. Constant for italic font style. |
static java.lang.Object |
PLAIN_FONT_STYLE
Deprecated. Constant for plain font style. |
static java.lang.Object |
PLAIN_FONT_WEIGHT
Deprecated. Constant for plain font weight. |
static ParsedPropertyKey |
TEXT_ANTIALIAS_KEY
Deprecated. This key is passed to Style.parseProperty() to obtain the text antialias style for a Style object. |
| Constructor Summary | |
|---|---|
CoreStyle()
Deprecated. |
|
| Method Summary | |
|---|---|
abstract java.lang.Object |
getParsedProperty(ParsedPropertyKey key)
Deprecated. Returns a parsed Java object corresponding to the specified property key. |
| Methods inherited from class org.apache.myfaces.trinidad.style.Style |
|---|
getProperties, toInlineString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final ParsedPropertyKey BACKGROUND_KEY
public static final ParsedPropertyKey FOREGROUND_KEY
public static final ParsedPropertyKey FONT_FAMILIES_KEY
public static final ParsedPropertyKey FONT_SIZE_KEY
public static final ParsedPropertyKey FONT_STYLE_KEY
public static final ParsedPropertyKey FONT_WEIGHT_KEY
public static final ParsedPropertyKey TEXT_ANTIALIAS_KEY
public static final java.lang.Object PLAIN_FONT_STYLE
public static final java.lang.Object ITALIC_FONT_STYLE
public static final java.lang.Object PLAIN_FONT_WEIGHT
public static final java.lang.Object BOLD_FONT_WEIGHT
| Constructor Detail |
|---|
public CoreStyle()
| Method Detail |
|---|
public abstract java.lang.Object getParsedProperty(ParsedPropertyKey key)
throws PropertyParseException
The type of object returned is dependent on the type of property requested. For example, when the FONT_SIZE_KEY is requested, an java.lang.Integer object is returned. When BACKGROUND_KEY or FOREGROUND_KEY is requested a java.awt.Color is returned. Null is returned if no value is defined for the specified property.
One - of the KEY constants (eg. FONT_SIZE_KEY, BACKGROUND_KEY,
etc...) defined by the Style interface.throws - PropertyParseException Thrown if the property value
can not be parsed.
PropertyParseException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||