summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java
diff options
context:
space:
mode:
authorkitfox2007-04-13 03:42:00 +0200
committerkitfox2007-04-13 03:42:00 +0200
commit078afe2ba40282df0eab421f6711a654097988c5 (patch)
treecaaee86b01c0006aba01cbf089e5e2b882d2ea34 /src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java
parentTest (diff)
downloadsvg-salamander-core-078afe2ba40282df0eab421f6711a654097988c5.tar.gz
svg-salamander-core-078afe2ba40282df0eab421f6711a654097988c5.tar.xz
svg-salamander-core-078afe2ba40282df0eab421f6711a654097988c5.zip
Added path definitions.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@15 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java b/src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java
new file mode 100644
index 0000000..ed4141e
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java
@@ -0,0 +1,35 @@
+/*
+ * SVGStyleElement.java
+ *
+ * Created on April 12, 2007, 7:17 PM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package com.kitfox.salamander.svg;
+
+/**
+ *
+ * The SVGStyleElement interface corresponds to the 'style' element.
+ * @author kitfox
+ */
+public interface SVGStyleElement
+{
+ /**
+ * Corresponds to attribute xml:space on the given element.
+ */
+ public DOMString getXmlspace();
+ /**
+ * Corresponds to attribute type on the given 'style' element.
+ */
+ public DOMString getType();
+ /**
+ * Corresponds to attribute media on the given 'style' element.
+ */
+ public DOMString getMedia();
+ /**
+ * Corresponds to attribute title on the given 'style' element.
+ */
+ public DOMString getTitle();
+}