Code

dos to unix conversion
[inkscape.git] / src / bind / java / org / w3c / dom / svg / SVGTextContentElement.java
index 7f27be2f69dbfac6bd5fca7ffdf7aa590ef4c7d9..c7c212961d55c9fdff2223c8e48919c7d84de21e 100644 (file)
@@ -1,37 +1,37 @@
-\r
-package org.w3c.dom.svg;\r
-\r
-import org.w3c.dom.events.EventTarget;\r
-import org.w3c.dom.DOMException;\r
-\r
-public interface SVGTextContentElement extends \r
-               SVGElement,\r
-               SVGTests,\r
-               SVGLangSpace,\r
-               SVGExternalResourcesRequired,\r
-               SVGStylable,\r
-               EventTarget {\r
-  // lengthAdjust Types\r
-  public static final short LENGTHADJUST_UNKNOWN   = 0;\r
-  public static final short LENGTHADJUST_SPACING     = 1;\r
-  public static final short LENGTHADJUST_SPACINGANDGLYPHS     = 2;\r
-\r
-  public SVGAnimatedLength      getTextLength( );\r
-  public SVGAnimatedEnumeration getLengthAdjust( );\r
-\r
-  public int      getNumberOfChars (  );\r
-  public float    getComputedTextLength (  );\r
-  public float    getSubStringLength ( int charnum, int nchars )\r
-                  throws DOMException;\r
-  public SVGPoint getStartPositionOfChar ( int charnum )\r
-                  throws DOMException;\r
-  public SVGPoint getEndPositionOfChar ( int charnum )\r
-                  throws DOMException;\r
-  public SVGRect  getExtentOfChar ( int charnum )\r
-                  throws DOMException;\r
-  public float    getRotationOfChar ( int charnum )\r
-                  throws DOMException;\r
-  public int      getCharNumAtPosition ( SVGPoint point );\r
-  public void     selectSubString ( int charnum, int nchars )\r
-                  throws DOMException;\r
-}\r
+
+package org.w3c.dom.svg;
+
+import org.w3c.dom.events.EventTarget;
+import org.w3c.dom.DOMException;
+
+public interface SVGTextContentElement extends 
+               SVGElement,
+               SVGTests,
+               SVGLangSpace,
+               SVGExternalResourcesRequired,
+               SVGStylable,
+               EventTarget {
+  // lengthAdjust Types
+  public static final short LENGTHADJUST_UNKNOWN   = 0;
+  public static final short LENGTHADJUST_SPACING     = 1;
+  public static final short LENGTHADJUST_SPACINGANDGLYPHS     = 2;
+
+  public SVGAnimatedLength      getTextLength( );
+  public SVGAnimatedEnumeration getLengthAdjust( );
+
+  public int      getNumberOfChars (  );
+  public float    getComputedTextLength (  );
+  public float    getSubStringLength ( int charnum, int nchars )
+                  throws DOMException;
+  public SVGPoint getStartPositionOfChar ( int charnum )
+                  throws DOMException;
+  public SVGPoint getEndPositionOfChar ( int charnum )
+                  throws DOMException;
+  public SVGRect  getExtentOfChar ( int charnum )
+                  throws DOMException;
+  public float    getRotationOfChar ( int charnum )
+                  throws DOMException;
+  public int      getCharNumAtPosition ( SVGPoint point );
+  public void     selectSubString ( int charnum, int nchars )
+                  throws DOMException;
+}