KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3c.dom.svg;
3
4 public interface SVGPatternElement extends
5                SVGElement,
6                SVGURIReference,
7                SVGTests,
8                SVGLangSpace,
9                SVGExternalResourcesRequired,
10                SVGStylable,
11                SVGFitToViewBox,
12                SVGUnitTypes {
13   public SVGAnimatedEnumeration getPatternUnits( );
14   public SVGAnimatedEnumeration getPatternContentUnits( );
15   public SVGAnimatedTransformList getPatternTransform( );
16   public SVGAnimatedLength getX( );
17   public SVGAnimatedLength getY( );
18   public SVGAnimatedLength getWidth( );
19   public SVGAnimatedLength getHeight( );
20 }
21
Popular Tags