13 lines
264 B
Java
13 lines
264 B
Java
package org.w3c.dom.svg;
|
|
|
|
import org.w3c.dom.css.CSSStyleDeclaration;
|
|
import org.w3c.dom.css.CSSValue;
|
|
|
|
public interface SVGStylable {
|
|
SVGAnimatedString getClassName();
|
|
|
|
CSSValue getPresentationAttribute(String str);
|
|
|
|
CSSStyleDeclaration getStyle();
|
|
}
|