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

package org.w3c.dom.svg;

public interface SVGFilterElement extends 
               SVGElement,
               SVGURIReference,
               SVGLangSpace,
               SVGExternalResourcesRequired,
               SVGStylable,
               SVGUnitTypes {
  public SVGAnimatedEnumeration getFilterUnits( );
  public SVGAnimatedEnumeration getPrimitiveUnits( );
  public SVGAnimatedLength      getX( );
  public SVGAnimatedLength      getY( );
  public SVGAnimatedLength      getWidth( );
  public SVGAnimatedLength      getHeight( );
  public SVGAnimatedInteger    getFilterResX( );
  public SVGAnimatedInteger    getFilterResY( );

  public void setFilterRes ( int filterResX, int filterResY );
}