21 lines
465 B
Java
21 lines
465 B
Java
package org.apache.batik.css.engine;
|
|
|
|
import org.apache.batik.util.ParsedURL;
|
|
import org.w3c.dom.Element;
|
|
|
|
public interface CSSStylableElement extends Element {
|
|
ParsedURL getCSSBase();
|
|
|
|
String getCSSClass();
|
|
|
|
StyleMap getComputedStyleMap(String str);
|
|
|
|
StyleDeclarationProvider getOverrideStyleDeclarationProvider();
|
|
|
|
String getXMLId();
|
|
|
|
boolean isPseudoInstanceOf(String str);
|
|
|
|
void setComputedStyleMap(String str, StyleMap styleMap);
|
|
}
|