niagara-ax/decompiled/org/w3c/dom/svg/SVGGradientElement.java
2026-03-17 13:31:18 -07:00

15 lines
575 B
Java

package org.w3c.dom.svg;
public interface SVGGradientElement extends SVGElement, SVGURIReference, SVGExternalResourcesRequired, SVGStylable, SVGUnitTypes {
public static final short SVG_SPREADMETHOD_PAD = (short) 1;
public static final short SVG_SPREADMETHOD_REFLECT = (short) 2;
public static final short SVG_SPREADMETHOD_REPEAT = (short) 3;
public static final short SVG_SPREADMETHOD_UNKNOWN = (short) 0;
SVGAnimatedTransformList getGradientTransform();
SVGAnimatedEnumeration getGradientUnits();
SVGAnimatedEnumeration getSpreadMethod();
}