Package org.apache.batik.css.dom
Interface CSSOMStyleDeclaration.ValueProvider
-
- All Known Implementing Classes:
CSSOMStoredStyleDeclaration,SVGStylableElement.OverrideStyleDeclaration,SVGStylableElement.StyleDeclaration
- Enclosing class:
- CSSOMStyleDeclaration
public static interface CSSOMStyleDeclaration.ValueProviderTo provides the values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetLength()Returns the length of the declaration.java.lang.StringgetText()Returns the text of the declaration.ValuegetValue(java.lang.String name)Returns the current value associated with this object.booleanisImportant(java.lang.String name)Tells whether the given property is important.java.lang.Stringitem(int idx)Returns the value at the given.
-
-
-
Method Detail
-
getValue
Value getValue(java.lang.String name)
Returns the current value associated with this object.
-
isImportant
boolean isImportant(java.lang.String name)
Tells whether the given property is important.
-
getText
java.lang.String getText()
Returns the text of the declaration.
-
getLength
int getLength()
Returns the length of the declaration.
-
item
java.lang.String item(int idx)
Returns the value at the given.
-
-