summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGGlyphRefElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGGlyphRefElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGGlyphRefElement.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGGlyphRefElement.java b/src/main/java/org/w3c/dom/svg/SVGGlyphRefElement.java
new file mode 100644
index 0000000..35bddc1
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGGlyphRefElement.java
@@ -0,0 +1,28 @@
+
+package org.w3c.dom.svg;
+
+import org.w3c.dom.DOMException;
+
+public interface SVGGlyphRefElement extends
+ SVGElement,
+ SVGURIReference,
+ SVGStylable {
+ public String getGlyphRef( );
+ public void setGlyphRef( String glyphRef )
+ throws DOMException;
+ public String getFormat( );
+ public void setFormat( String format )
+ throws DOMException;
+ public float getX( );
+ public void setX( float x )
+ throws DOMException;
+ public float getY( );
+ public void setY( float y )
+ throws DOMException;
+ public float getDx( );
+ public void setDx( float dx )
+ throws DOMException;
+ public float getDy( );
+ public void setDy( float dy )
+ throws DOMException;
+}