org.apache.batik.css.engine
public class StyleDeclaration extends Object
Field Summary | |
---|---|
protected int | count
The number of values in the declaration. |
protected int[] | indexes
The value indexes. |
protected static int | INITIAL_LENGTH |
protected boolean[] | priorities
The value priorities. |
protected Value[] | values
The values. |
Method Summary | |
---|---|
void | append(Value v, int idx, boolean prio)
Appends a value to the declaration. |
int | getIndex(int idx)
Returns the property index of a value. |
boolean | getPriority(int idx)
Tells whether a value is important. |
Value | getValue(int idx)
Returns the value at the given index. |
void | put(int idx, Value v, int i, boolean prio)
Sets a value within the declaration. |
void | remove(int idx)
Removes the value at the given index. |
int | size()
Returns the number of values in the declaration. |
String | toString(CSSEngine eng)
Returns a printable representation of this style rule. |