summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGStylable.java
blob: 0d547c66682931cb668fe84c71a1d0884c059279 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

package org.w3c.dom.svg;

import org.w3c.dom.css.CSSStyleDeclaration;
import org.w3c.dom.css.CSSValue;

public interface SVGStylable {
  public SVGAnimatedString getClassName( );
  public CSSStyleDeclaration getStyle( );

  public CSSValue getPresentationAttribute ( String name );
}