Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGTextPathElement.java
2 package org.w3c.dom.svg;
4 public interface SVGTextPathElement extends 
5                SVGTextContentElement,
6                SVGURIReference {
7   // textPath Method Types
8   public static final short TEXTPATH_METHODTYPE_UNKNOWN   = 0;
9   public static final short TEXTPATH_METHODTYPE_ALIGN     = 1;
10   public static final short TEXTPATH_METHODTYPE_STRETCH     = 2;
11   // textPath Spacing Types
12   public static final short TEXTPATH_SPACINGTYPE_UNKNOWN   = 0;
13   public static final short TEXTPATH_SPACINGTYPE_AUTO     = 1;
14   public static final short TEXTPATH_SPACINGTYPE_EXACT     = 2;
16   public SVGAnimatedLength              getStartOffset( );
17   public SVGAnimatedEnumeration getMethod( );
18   public SVGAnimatedEnumeration getSpacing( );
19 }