summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGStyleElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGStyleElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGStyleElement.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGStyleElement.java b/src/main/java/org/w3c/dom/svg/SVGStyleElement.java
new file mode 100644
index 0000000..b8e110e
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGStyleElement.java
@@ -0,0 +1,20 @@
+
+package org.w3c.dom.svg;
+
+import org.w3c.dom.DOMException;
+
+public interface SVGStyleElement extends
+ SVGElement {
+ public String getXMLspace( );
+ public void setXMLspace( String xmlspace )
+ throws DOMException;
+ public String getType( );
+ public void setType( String type )
+ throws DOMException;
+ public String getMedia( );
+ public void setMedia( String media )
+ throws DOMException;
+ public String getTitle( );
+ public void setTitle( String title )
+ throws DOMException;
+}