API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom.css. CSSValueList View Source
Author(s)
Since
DOM Level 2
Version
Serial
Hierarchy
 CSSValue
      CSSValueList
Subinterfaces
Description
public interface CSSValueList
  The CSSValueList interface provides the abstraction of an ordered collection of CSS values.
See also:   
Methods
Hide/Show inherited methods
public int getLength ()
  The number of CSSValues in the list.
public CSSValue item (int index)
  Used to retrieve a CSSValue by ordinal index.
Fields
Hide/Show inherited fields
publicfinalstatic short CSS_CUSTOM = "3" [Inherited From CSSValue]
The value is a custom value.
publicfinalstatic short CSS_INHERIT = "0" [Inherited From CSSValue]
The value is inherited and the cssText contains "inherit".
publicfinalstatic short CSS_PRIMITIVE_VALUE = "1" [Inherited From CSSValue]
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" [Inherited From CSSValue]
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