org.apache.batik.css.dom
Class CSSOMStyleDeclaration

java.lang.Object
  |
  +--org.apache.batik.css.dom.CSSOMStyleDeclaration
All Implemented Interfaces:
CSSStyleDeclaration
Direct Known Subclasses:
CSSOMSVGStyleDeclaration

public class CSSOMStyleDeclaration
extends java.lang.Object
implements CSSStyleDeclaration

This class represents a style declaration.


Inner Class Summary
static interface CSSOMStyleDeclaration.ModificationHandler
          To manage the modifications on a CSS value.
 class CSSOMStyleDeclaration.StyleDeclarationValue
          This class represents a CSS value returned by this declaration.
static interface CSSOMStyleDeclaration.ValueProvider
          To provides the values.
 
Field Summary
protected  CSSOMStyleDeclaration.ModificationHandler handler
          The modifications handler.
protected  CSSRule parentRule
          The parent rule.
protected  CSSOMStyleDeclaration.ValueProvider valueProvider
          The associated value.
protected  java.util.Map values
          The values.
 
Constructor Summary
CSSOMStyleDeclaration(CSSOMStyleDeclaration.ValueProvider vp, CSSRule parent)
          Creates a new style declaration.
 
Method Summary
protected  CSSValue createCSSValue(java.lang.String name)
          Creates the CSS value associated with the given property.
 java.lang.String getCssText()
          DOM: Implements CSSStyleDeclaration.getCssText().
protected  CSSValue getCSSValue(java.lang.String name)
          Gets the CSS value associated with the given property.
 int getLength()
          DOM: Implements CSSStyleDeclaration.getLength().
 CSSRule getParentRule()
          DOM: Implements CSSStyleDeclaration.getParentRule().
 CSSValue getPropertyCSSValue(java.lang.String propertyName)
          DOM: Implements CSSStyleDeclaration.getPropertyCSSValue(String).
 java.lang.String getPropertyPriority(java.lang.String propertyName)
          DOM: Implements CSSStyleDeclaration.getPropertyPriority(String).
 java.lang.String getPropertyValue(java.lang.String propertyName)
          DOM: Implements CSSStyleDeclaration.getPropertyValue(String).
 java.lang.String item(int index)
          DOM: Implements CSSStyleDeclaration.item(int).
 java.lang.String removeProperty(java.lang.String propertyName)
          DOM: Implements CSSStyleDeclaration.removeProperty(String).
 void setCssText(java.lang.String cssText)
          DOM: Implements CSSStyleDeclaration.setCssText(String).
 void setModificationHandler(CSSOMStyleDeclaration.ModificationHandler h)
          Sets the modification handler of this value.
 void setProperty(java.lang.String propertyName, java.lang.String value, java.lang.String prio)
          DOM: Implements CSSStyleDeclaration.setProperty(String,String,String).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

valueProvider

protected CSSOMStyleDeclaration.ValueProvider valueProvider
The associated value.

handler

protected CSSOMStyleDeclaration.ModificationHandler handler
The modifications handler.

parentRule

protected CSSRule parentRule
The parent rule.

values

protected java.util.Map values
The values.
Constructor Detail

CSSOMStyleDeclaration

public CSSOMStyleDeclaration(CSSOMStyleDeclaration.ValueProvider vp,
                             CSSRule parent)
Creates a new style declaration.
Method Detail

setModificationHandler

public void setModificationHandler(CSSOMStyleDeclaration.ModificationHandler h)
Sets the modification handler of this value.

getCssText

public java.lang.String getCssText()
DOM: Implements CSSStyleDeclaration.getCssText().
Specified by:
getCssText in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Throws:
DOMException - SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly or a property is readonly.

setCssText

public void setCssText(java.lang.String cssText)
                throws DOMException
DOM: Implements CSSStyleDeclaration.setCssText(String).
Specified by:
setCssText in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Throws:
DOMException - SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly or a property is readonly.

getPropertyValue

public java.lang.String getPropertyValue(java.lang.String propertyName)
DOM: Implements CSSStyleDeclaration.getPropertyValue(String).
Specified by:
getPropertyValue in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Parameters:
propertyName - The name of the CSS property. See the CSS property index.
Returns:
Returns the value of the property if it has been explicitly set for this declaration block. Returns the empty string if the property has not been set.

getPropertyCSSValue

public CSSValue getPropertyCSSValue(java.lang.String propertyName)
DOM: Implements CSSStyleDeclaration.getPropertyCSSValue(String).
Specified by:
getPropertyCSSValue in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Parameters:
propertyName - The name of the CSS property. See the CSS property index.
Returns:
Returns the value of the property if it has been explicitly set for this declaration block. Returns null if the property has not been set.

removeProperty

public java.lang.String removeProperty(java.lang.String propertyName)
                                throws DOMException
DOM: Implements CSSStyleDeclaration.removeProperty(String).
Specified by:
removeProperty in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Parameters:
propertyName - The name of the CSS property. See the CSS property index.
Returns:
Returns the value of the property if it has been explicitly set for this declaration block. Returns the empty string if the property has not been set or the property name does not correspond to a known CSS property.
Throws:
DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly or the property is readonly.

getPropertyPriority

public java.lang.String getPropertyPriority(java.lang.String propertyName)
DOM: Implements CSSStyleDeclaration.getPropertyPriority(String).
Specified by:
getPropertyPriority in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Parameters:
propertyName - The name of the CSS property. See the CSS property index.
Returns:
A string representing the priority (e.g. "important") if one exists. The empty string if none exists.

setProperty

public void setProperty(java.lang.String propertyName,
                        java.lang.String value,
                        java.lang.String prio)
                 throws DOMException
DOM: Implements CSSStyleDeclaration.setProperty(String,String,String).
Specified by:
setProperty in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Parameters:
propertyName - The name of the CSS property. See the CSS property index.
value - The new value of the property.
priority - The new priority of the property (e.g. "important").
Throws:
DOMException - SYNTAX_ERR: Raised if the specified value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this declaration is readonly or the property is readonly.

getLength

public int getLength()
DOM: Implements CSSStyleDeclaration.getLength().
Specified by:
getLength in interface CSSStyleDeclaration

item

public java.lang.String item(int index)
DOM: Implements CSSStyleDeclaration.item(int).
Specified by:
item in interface CSSStyleDeclaration
Following copied from interface: org.w3c.dom.css.CSSStyleDeclaration
Parameters:
index - Index of the property name to retrieve.
Returns:
The name of the property at this ordinal position. The empty string if no property exists at this position.

getParentRule

public CSSRule getParentRule()
DOM: Implements CSSStyleDeclaration.getParentRule().
Specified by:
getParentRule in interface CSSStyleDeclaration

getCSSValue

protected CSSValue getCSSValue(java.lang.String name)
Gets the CSS value associated with the given property.

createCSSValue

protected CSSValue createCSSValue(java.lang.String name)
Creates the CSS value associated with the given property.


Copyright © 2002 Apache Software Foundation. All Rights Reserved.