summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java b/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java
new file mode 100644
index 0000000..61d0897
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java
@@ -0,0 +1,42 @@
+/*
+ * SVGTextPositioningElement.java
+ *
+ * Created on April 13, 2007, 9:43 AM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package com.kitfox.salamander.svg.text;
+
+import com.kitfox.salamander.svg.basic.SVGAnimatedLengthList;
+import com.kitfox.salamander.svg.basic.SVGAnimatedNumberList;
+
+/**
+ * The SVGTextPositioningElement interface is inherited by text-related interfaces: SVGTextElement, SVGTSpanElement, SVGTRefElement and SVGAltGlyphElement.
+ * @author kitfox
+ */
+public interface SVGTextPositioningElement extends SVGTextContentElement
+{
+ /**
+ * Corresponds to attribute x on the given element.
+ */
+ public SVGAnimatedLengthList getX();
+ /**
+ * Corresponds to attribute y on the given element.
+ */
+ public SVGAnimatedLengthList getY();
+ /**
+ * Corresponds to attribute dx on the given element.
+ */
+ public SVGAnimatedLengthList getDx();
+ /**
+ * Corresponds to attribute dy on the given element.
+ */
+ public SVGAnimatedLengthList getDy();
+ /**
+ * Corresponds to attribute rotate on the given element.
+ */
+ public SVGAnimatedNumberList getRotate();
+
+}