summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGTextPathElement.java
blob: bbd56a4a9a492a3278a55618c127382f391a8f42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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( );
}