KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGStylable


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 JavaDoc name );
12 }
13
Popular Tags