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

package org.w3c.dom.svg;

public interface SVGMaskElement extends 
               SVGElement,
               SVGTests,
               SVGLangSpace,
               SVGExternalResourcesRequired,
               SVGStylable,
               SVGUnitTypes {
  public SVGAnimatedEnumeration getMaskUnits( );
  public SVGAnimatedEnumeration getMaskContentUnits( );
  public SVGAnimatedLength      getX( );
  public SVGAnimatedLength      getY( );
  public SVGAnimatedLength      getWidth( );
  public SVGAnimatedLength      getHeight( );
}