summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/fills/SVGGradientElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/fills/SVGGradientElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/fills/SVGGradientElement.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/fills/SVGGradientElement.java b/src/main/java/com/kitfox/salamander/svg/fills/SVGGradientElement.java
deleted file mode 100644
index 98690b0..0000000
--- a/src/main/java/com/kitfox/salamander/svg/fills/SVGGradientElement.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * SVGGradientElement.java
- *
- * Created on April 13, 2007, 10:12 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.fills;
-
-import com.kitfox.salamander.svg.basic.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGElement;
-import com.kitfox.salamander.svg.basic.SVGExternalResourcesRequired;
-import com.kitfox.salamander.svg.basic.SVGStylable;
-import com.kitfox.salamander.svg.basic.SVGURIReference;
-import com.kitfox.salamander.svg.basic.SVGUnitTypes;
-import com.kitfox.salamander.svg.coordSystems.SVGAnimatedTransformList;
-
-/**
- *
- * The SVGGradientElement interface is a base interface used by SVGLinearGradientElement and SVGRadialGradientElement.
- * @author kitfox
- */
-public interface SVGGradientElement extends SVGElement,
- SVGURIReference,
- SVGExternalResourcesRequired,
- SVGStylable,
- SVGUnitTypes
-{
- public static enum SpreadMethod
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value pad.
- */
- PAD,
- /**
- * Corresponds to value reflect.
- */
- REFLECT,
- /**
- * Corresponds to value repeat.
- */
- REPEAT};
- /**
- * Corresponds to attribute gradientUnits on the given element. Takes one of the constants defined in SVGUnitTypes.
- */
- public SVGAnimatedEnumeration<SVGUnitTypes.Type> getGradientUnits();
- /**
- * Corresponds to attribute gradientTransform on the given element.
- */
- public SVGAnimatedTransformList getGradientTransform();
- /**
- * Corresponds to attribute spreadMethod on the given element. One of the Spread Method Types.
- */
- public SVGAnimatedEnumeration<SpreadMethod> getSpreadMethod();
-
-}