summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/fills/SVGLinearGradientElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/fills/SVGLinearGradientElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/fills/SVGLinearGradientElement.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/fills/SVGLinearGradientElement.java b/src/main/java/com/kitfox/salamander/svg/fills/SVGLinearGradientElement.java
deleted file mode 100644
index 0f6cbcd..0000000
--- a/src/main/java/com/kitfox/salamander/svg/fills/SVGLinearGradientElement.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * SVGLinearGradientElement.java
- *
- * Created on April 13, 2007, 10:15 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.SVGAnimatedLength;
-
-/**
- * The SVGLinearGradientElement interface corresponds to the 'linearGradient' element.
- * @author kitfox
- */
-public interface SVGLinearGradientElement extends SVGGradientElement
-{
- /**
- * Corresponds to attribute x1 on the given 'linearGradient' element.
- */
- public SVGAnimatedLength getX1();
- /**
- * Corresponds to attribute y1 on the given 'linearGradient' element.
- */
- public SVGAnimatedLength getY1();
- /**
- * Corresponds to attribute x2 on the given 'linearGradient' element.
- */
- public SVGAnimatedLength getX2();
- /**
- * Corresponds to attribute y2 on the given 'linearGradient' element.
- */
- public SVGAnimatedLength getY2();
-}