1 2 package org.w3c.dom.svg; 3 4 public interface SVGGradientElement extends 5 SVGElement, 6 SVGURIReference, 7 SVGExternalResourcesRequired, 8 SVGStylable, 9 SVGUnitTypes { 10 public static final short SVG_SPREADMETHOD_UNKNOWN = 0; 12 public static final short SVG_SPREADMETHOD_PAD = 1; 13 public static final short SVG_SPREADMETHOD_REFLECT = 2; 14 public static final short SVG_SPREADMETHOD_REPEAT = 3; 15 16 public SVGAnimatedEnumeration getGradientUnits( ); 17 public SVGAnimatedTransformList getGradientTransform( ); 18 public SVGAnimatedEnumeration getSpreadMethod( ); 19 } 20 | Popular Tags |