summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/clip/SVGMaskElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/clip/SVGMaskElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/clip/SVGMaskElement.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/clip/SVGMaskElement.java b/src/main/java/com/kitfox/salamander/svg/clip/SVGMaskElement.java
deleted file mode 100644
index 7dc2e16..0000000
--- a/src/main/java/com/kitfox/salamander/svg/clip/SVGMaskElement.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * SVGMaskElement.java
- *
- * Created on April 13, 2007, 10:29 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.SVGAnimatedLength;
-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.SVGUnitTypes;
-
-/**
- * The SVGMaskElement interface corresponds to the 'mask' element.
- * @author kitfox
- */
-public interface SVGMaskElement extends SVGElement,
- SVGTests,
- SVGLangSpace,
- SVGExternalResourcesRequired,
- SVGStylable,
- SVGUnitTypes
-{
- /**
- * Corresponds to attribute maskUnits on the given 'mask' element. Takes one of the constants defined in SVGUnitTypes.
- */
- public SVGAnimatedEnumeration<SVGUnitTypes.Type> getMaskUnits();
- /**
- * Corresponds to attribute maskContentUnits on the given 'mask' element. Takes one of the constants defined in SVGUnitTypes.
- */
- public SVGAnimatedEnumeration<SVGUnitTypes.Type> getMaskContentUnits();
- /**
- * Corresponds to attribute x on the given 'mask' element.
- */
- public SVGAnimatedLength getX();
- /**
- * Corresponds to attribute y on the given 'mask' element.
- */
- public SVGAnimatedLength getY();
- /**
- * Corresponds to attribute width on the given 'mask' element.
- */
- public SVGAnimatedLength getWidth();
- /**
- * Corresponds to attribute height on the given 'mask' element.
- */
- public SVGAnimatedLength getHeight();
-}