summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/clip/SVGClipPathElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/clip/SVGClipPathElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/clip/SVGClipPathElement.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/clip/SVGClipPathElement.java b/src/main/java/com/kitfox/salamander/svg/clip/SVGClipPathElement.java
new file mode 100644
index 0000000..227d459
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/clip/SVGClipPathElement.java
@@ -0,0 +1,37 @@
+/*
+ * SVGClipPathElement.java
+ *
+ * Created on April 13, 2007, 10:28 AM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package com.kitfox.salamander.svg.clip;
+
+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.SVGLangSpace;
+import com.kitfox.salamander.svg.basic.SVGStylable;
+import com.kitfox.salamander.svg.basic.SVGTests;
+import com.kitfox.salamander.svg.basic.SVGTransformable;
+import com.kitfox.salamander.svg.basic.SVGUnitTypes;
+
+/**
+ * The SVGClipPathElement interface corresponds to the 'clipPath' element.
+ * @author kitfox
+ */
+public interface SVGClipPathElement extends SVGElement,
+ SVGTests,
+ SVGLangSpace,
+ SVGExternalResourcesRequired,
+ SVGStylable,
+ SVGTransformable,
+ SVGUnitTypes
+{
+ /**
+ * Corresponds to attribute clipPathUnits on the given 'clipPath' element. Takes one of the constants defined in SVGUnitTypes.
+ */
+ public SVGAnimatedEnumeration getClipPathUnits();
+}