Method Summary |
|
public short | getMask(int i) Returns the mask of the given property value. |
public short | getOrigin(int i) Returns the origin value. |
public int | getSize(boolean total) Return the size of the stylemap. |
public Value | getValue(int i) Returns the value at the given index, null if unspecified. |
public boolean | hasFixedCascadedValues() Whether this map has fixed cascaded value. |
public boolean | isBlockHeightRelative(int i) Tells whether the given property value is relative to the
height of the containing block. |
public boolean | isBlockWidthRelative(int i) Tells whether the given property value is relative to the
width of the containing block. |
public boolean | isColorRelative(int i) Tells whether the given property value is relative to 'color'. |
public boolean | isComputed(int i) Tells whether the given property value is computed. |
public boolean | isFontSizeRelative(int i) Tells whether the given property value is relative to 'font-size'. |
public boolean | isImportant(int i) Tells whether the given property value is important. |
public boolean | isInherited(int i) |
public boolean | isLineHeightRelative(int i) Tells whether the given property value is relative to 'line-height'. |
public boolean | isNullCascaded(int i) Tells whether the given cascaded property value is null. |
public boolean | isParentRelative(int i) Tells whether the given property value is relative to the parent's
property value. |
public void | putBlockHeightRelative(int i, boolean b) Sets the block-height-relative flag of a property value. |
public void | putBlockWidthRelative(int i, boolean b) Sets the block-width-relative flag of a property value. |
public void | putComputed(int i, boolean b) Sets the computed flag of a property value. |
public void | putFontSizeRelative(int i, boolean b) Sets the font-size-relative flag of a property value. |
public void | putImportant(int i, boolean b) Sets the priority of a property value. |
public void | putInherited(int i, boolean b) Sets the color-relative flag of a property value. |
public void | putLineHeightRelative(int i, boolean b) Sets the line-height-relative flag of a property value. |
public void | putMask(int i, short m) Puts a property mask, given the property index. |
public void | putNullCascaded(int i, boolean b) Sets the null-cascaded flag of a property value. |
public void | putOrigin(int i, short val) Sets the origin of the given value. |
public void | putParentRelative(int i, boolean b) Sets the parent-relative flag of a property value. |
public void | putValue(int i, Value v) Puts a property value, given the property index. |
public void | setFixedCascadedStyle(boolean b) Sets the fixedCascadedValues property. |
public String | toString(CSSEngine eng) Returns a printable representation of this style map. |
public String | toString() Returns a printable representation of this style map. |
public String | toStyleString(CSSEngine eng) Returns a single line string suitable as a "style" attribute
for an element. |