summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGPatternElement.java
blob: a6ce5ca274fd46f4d8a53e01e3786234d71938cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

package org.w3c.dom.svg;

public interface SVGPatternElement extends 
               SVGElement,
               SVGURIReference,
               SVGTests,
               SVGLangSpace,
               SVGExternalResourcesRequired,
               SVGStylable,
               SVGFitToViewBox,
               SVGUnitTypes {
  public SVGAnimatedEnumeration   getPatternUnits( );
  public SVGAnimatedEnumeration   getPatternContentUnits( );
  public SVGAnimatedTransformList getPatternTransform( );
  public SVGAnimatedLength        getX( );
  public SVGAnimatedLength        getY( );
  public SVGAnimatedLength        getWidth( );
  public SVGAnimatedLength        getHeight( );
}