KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFilterPrimitiveStandardAttributes extends
5                SVGStylable {
6   public SVGAnimatedLength getX( );
7   public SVGAnimatedLength getY( );
8   public SVGAnimatedLength getWidth( );
9   public SVGAnimatedLength getHeight( );
10   public SVGAnimatedString getResult( );
11 }
12
Popular Tags