summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java b/src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java
deleted file mode 100644
index d1ddc0a..0000000
--- a/src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * SVGStopElement.java
- *
- * Created on April 13, 2007, 10:18 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.SVGAnimatedNumber;
-import com.kitfox.salamander.svg.basic.SVGElement;
-import com.kitfox.salamander.svg.basic.SVGStylable;
-
-/**
- * The SVGStopElement interface corresponds to the 'stop' element.
- * @author kitfox
- */
-public interface SVGStopElement extends SVGElement,
- SVGStylable
-{
- /**
- * Corresponds to attribute offset on the given 'stop' element.
- */
- public SVGAnimatedNumber getOffset();
-}