1 2 package org.w3c.dom.svg; 3 4 public interface SVGFilterElement extends 5 SVGElement, 6 SVGURIReference, 7 SVGLangSpace, 8 SVGExternalResourcesRequired, 9 SVGStylable, 10 SVGUnitTypes { 11 public SVGAnimatedEnumeration getFilterUnits( ); 12 public SVGAnimatedEnumeration getPrimitiveUnits( ); 13 public SVGAnimatedLength getX( ); 14 public SVGAnimatedLength getY( ); 15 public SVGAnimatedLength getWidth( ); 16 public SVGAnimatedLength getHeight( ); 17 public SVGAnimatedInteger getFilterResX( ); 18 public SVGAnimatedInteger getFilterResY( ); 19 20 public void setFilterRes ( int filterResX, int filterResY ); 21 } 22 | Popular Tags |