1 2 package org.w3c.dom.svg;3 4 import org.w3c.dom.css.CSSStyleDeclaration;5 import org.w3c.dom.css.CSSValue;6 7 public interface SVGStylable {8 public SVGAnimatedString getClassName( );9 public CSSStyleDeclaration getStyle( );10 11 public CSSValue getPresentationAttribute ( String name );12 }13