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, 0 insertions, 37 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
deleted file mode 100644
index 47a5fd2..0000000
--- a/src/main/java/com/kitfox/salamander/svg/clip/SVGClipPathElement.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * 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<SVGUnitTypes.Type> getClipPathUnits();
-}