1 18 package org.apache.batik.css.engine; 19 20 import java.net.URL ; 21 22 import org.w3c.dom.Element ; 23 24 31 public interface CSSStylableElement extends Element { 32 33 36 StyleMap getComputedStyleMap(String pseudoElement); 37 38 41 void setComputedStyleMap(String pseudoElement, StyleMap sm); 42 43 46 String getXMLId(); 47 48 51 String getCSSClass(); 52 53 56 URL getCSSBase(); 57 58 62 boolean isPseudoInstanceOf(String pseudoClass); 63 } 64 | Popular Tags |