API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom.css. CSSValue View Source
Author(s)
Since
DOM Level 2
Version
Serial
Hierarchy
 CSSValue
Subinterfaces
Description
public interface CSSValue
  The CSSValue interface represents a simple or a complex value.
See also:   
Methods
Hide/Show inherited methods
public String getCssText ()
A string representation of the current value.
public short getCssValueType ()
A code defining the type of the value as defined above.
public void setCssText (String cssText) throws DOMException
  A string representation of the current value.
Fields
Hide/Show inherited fields
publicfinalstatic short CSS_CUSTOM = "3"
The value is a custom value.
publicfinalstatic short CSS_INHERIT = "0"
The value is inherited and the cssText contains "inherit".
publicfinalstatic short CSS_PRIMITIVE_VALUE = "1"
The value is a primitive value and an instance of the CSSPrimitiveValue interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
publicfinalstatic short CSS_VALUE_LIST = "2"
The value is a CSSValue list and an instance of the CSSValueList interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar