1 12 13 package org.w3c.dom.css; 14 15 import org.w3c.dom.DOMException ; 16 17 24 public interface CSSValue { 25 29 public static final short CSS_INHERIT = 0; 30 36 public static final short CSS_PRIMITIVE_VALUE = 1; 37 43 public static final short CSS_VALUE_LIST = 2; 44 47 public static final short CSS_CUSTOM = 3; 48 49 59 public String getCssText(); 60 public void setCssText(String cssText) 61 throws DOMException ; 62 63 66 public short getCssValueType(); 67 68 } 69 | Popular Tags |