summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/SVGStyleElement.java
diff options
context:
space:
mode:
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();
+}