1 12 13 package org.w3c.dom.css; 14 15 import org.w3c.dom.DOMException ; 16 17 36 public interface CSSStyleDeclaration { 37 49 public String getCssText(); 50 public void setCssText(String cssText) 51 throws DOMException ; 52 53 62 public String getPropertyValue(String propertyName); 63 64 77 public CSSValue getPropertyCSSValue(String propertyName); 78 79 92 public String removeProperty(String propertyName) 93 throws DOMException ; 94 95 105 public String getPropertyPriority(String propertyName); 106 107 121 public void setProperty(String propertyName, 122 String value, 123 String priority) 124 throws DOMException ; 125 126 131 public int getLength(); 132 133 143 public String item(int index); 144 145 150 public CSSRule getParentRule(); 151 152 } 153 | Popular Tags |