summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGTextPathElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGTextPathElement.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java b/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java
new file mode 100644
index 0000000..bbd56a4
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java
@@ -0,0 +1,19 @@
+
+package org.w3c.dom.svg;
+
+public interface SVGTextPathElement extends
+ SVGTextContentElement,
+ SVGURIReference {
+ // textPath Method Types
+ public static final short TEXTPATH_METHODTYPE_UNKNOWN = 0;
+ public static final short TEXTPATH_METHODTYPE_ALIGN = 1;
+ public static final short TEXTPATH_METHODTYPE_STRETCH = 2;
+ // textPath Spacing Types
+ public static final short TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
+ public static final short TEXTPATH_SPACINGTYPE_AUTO = 1;
+ public static final short TEXTPATH_SPACINGTYPE_EXACT = 2;
+
+ public SVGAnimatedLength getStartOffset( );
+ public SVGAnimatedEnumeration getMethod( );
+ public SVGAnimatedEnumeration getSpacing( );
+}