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, 0 insertions, 19 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java b/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java
deleted file mode 100644
index bbd56a4..0000000
--- a/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java
+++ /dev/null
@@ -1,19 +0,0 @@
-
-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( );
-}