summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java
diff options
context:
space:
mode:
authorkitfox2007-04-13 16:33:10 +0200
committerkitfox2007-04-13 16:33:10 +0200
commit29c5d1fc53511b84b3f732304317f90cdbb003ae (patch)
tree7b4dbb92bc73c90698b39cf72d037bef5be4c4a9 /src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java
parentFixed bad imports. (diff)
downloadsvg-salamander-core-29c5d1fc53511b84b3f732304317f90cdbb003ae.tar.gz
svg-salamander-core-29c5d1fc53511b84b3f732304317f90cdbb003ae.tar.xz
svg-salamander-core-29c5d1fc53511b84b3f732304317f90cdbb003ae.zip
Added text and formatting interfaces.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@22 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
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, 27 insertions, 0 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
new file mode 100644
index 0000000..d1ddc0a
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/fills/SVGStopElement.java
@@ -0,0 +1,27 @@
+/*
+ * 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();
+}