<DT><B>All Known Implementing Classes:</B><DD><AHREF="../../../../com/mxgraph/util/svg/AWTPathProducer.html"title="class in com.mxgraph.util.svg">AWTPathProducer</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public interface <B>PathHandler</B></DL>
</PRE>
<P>
This interface must be implemented and then registred as the
handler of a <code>PathParser</code> instance in order to be
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when the path starts.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="endPath()"><!----></A><H3>
endPath</H3>
<PRE>
void <B>endPath</B>()
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when the path ends.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="movetoRel(float, float)"><!----></A><H3>
movetoRel</H3>
<PRE>
void <B>movetoRel</B>(float x,
float y)
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a relative moveto command has been parsed.
<p>Command : <b>m</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the relative x coordinate for the end point<DD><CODE>y</CODE> - the relative y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="movetoAbs(float, float)"><!----></A><H3>
movetoAbs</H3>
<PRE>
void <B>movetoAbs</B>(float x,
float y)
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an absolute moveto command has been parsed.
<p>Command : <b>M</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the absolute x coordinate for the end point<DD><CODE>y</CODE> - the absolute y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="closePath()"><!----></A><H3>
closePath</H3>
<PRE>
void <B>closePath</B>()
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a closepath has been parsed.
<p>Command : <b>z</b> | <b>Z</b>
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="linetoRel(float, float)"><!----></A><H3>
linetoRel</H3>
<PRE>
void <B>linetoRel</B>(float x,
float y)
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a relative line command has been parsed.
<p>Command : <b>l</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the relative x coordinates for the end point<DD><CODE>y</CODE> - the relative y coordinates for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="linetoAbs(float, float)"><!----></A><H3>
linetoAbs</H3>
<PRE>
void <B>linetoAbs</B>(float x,
float y)
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an absolute line command has been parsed.
<p>Command : <b>L</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the absolute x coordinate for the end point<DD><CODE>y</CODE> - the absolute y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an horizontal relative line command has been parsed.
<p>Command : <b>h</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the relative X coordinate of the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an horizontal absolute line command has been parsed.
<p>Command : <b>H</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the absolute X coordinate of the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="linetoVerticalRel(float)"><!----></A><H3>
linetoVerticalRel</H3>
<PRE>
void <B>linetoVerticalRel</B>(float y)
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a vertical relative line command has been parsed.
<p>Command : <b>v</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>y</CODE> - the relative Y coordinate of the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
</DD>
</DL>
<HR>
<ANAME="linetoVerticalAbs(float)"><!----></A><H3>
linetoVerticalAbs</H3>
<PRE>
void <B>linetoVerticalAbs</B>(float y)
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a vertical absolute line command has been parsed.
<p>Command : <b>V</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>y</CODE> - the absolute Y coordinate of the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a relative cubic bezier curve command has been parsed.
<p>Command : <b>c</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x1</CODE> - the relative x coordinate for the first control point<DD><CODE>y1</CODE> - the relative y coordinate for the first control point<DD><CODE>x2</CODE> - the relative x coordinate for the second control point<DD><CODE>y2</CODE> - the relative y coordinate for the second control point<DD><CODE>x</CODE> - the relative x coordinate for the end point<DD><CODE>y</CODE> - the relative y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an absolute cubic bezier curve command has been parsed.
<p>Command : <b>C</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x1</CODE> - the absolute x coordinate for the first control point<DD><CODE>y1</CODE> - the absolute y coordinate for the first control point<DD><CODE>x2</CODE> - the absolute x coordinate for the second control point<DD><CODE>y2</CODE> - the absolute y coordinate for the second control point<DD><CODE>x</CODE> - the absolute x coordinate for the end point<DD><CODE>y</CODE> - the absolute y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a relative smooth cubic bezier curve command has
been parsed. The first control point is assumed to be the
reflection of the second control point on the previous command
relative to the current point.
<p>Command : <b>s</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x2</CODE> - the relative x coordinate for the second control point<DD><CODE>y2</CODE> - the relative y coordinate for the second control point<DD><CODE>x</CODE> - the relative x coordinate for the end point<DD><CODE>y</CODE> - the relative y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an absolute smooth cubic bezier curve command has
been parsed. The first control point is assumed to be the
reflection of the second control point on the previous command
relative to the current point.
<p>Command : <b>S</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x2</CODE> - the absolute x coordinate for the second control point<DD><CODE>y2</CODE> - the absolute y coordinate for the second control point<DD><CODE>x</CODE> - the absolute x coordinate for the end point<DD><CODE>y</CODE> - the absolute y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a relative quadratic bezier curve command has been parsed.
<p>Command : <b>q</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x1</CODE> - the relative x coordinate for the control point<DD><CODE>y1</CODE> - the relative y coordinate for the control point<DD><CODE>x</CODE> - the relative x coordinate for the end point<DD><CODE>y</CODE> - the relative x coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an absolute quadratic bezier curve command has been parsed.
<p>Command : <b>Q</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x1</CODE> - the absolute x coordinate for the control point<DD><CODE>y1</CODE> - the absolute y coordinate for the control point<DD><CODE>x</CODE> - the absolute x coordinate for the end point<DD><CODE>y</CODE> - the absolute x coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a relative smooth quadratic bezier curve command
has been parsed. The control point is assumed to be the
reflection of the control point on the previous command
relative to the current point.
<p>Command : <b>t</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the relative x coordinate for the end point<DD><CODE>y</CODE> - the relative y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an absolute smooth quadratic bezier curve command
has been parsed. The control point is assumed to be the
reflection of the control point on the previous command
relative to the current point.
<p>Command : <b>T</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - the absolute x coordinate for the end point<DD><CODE>y</CODE> - the absolute y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when a relative elliptical arc command has been parsed.
<p>Command : <b>a</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rx</CODE> - the X axis radius for the ellipse<DD><CODE>ry</CODE> - the Y axis radius for the ellipse<DD><CODE>xAxisRotation</CODE> - the rotation angle in degrees for the ellipse's
X-axis relative to the X-axis<DD><CODE>largeArcFlag</CODE> - the value of the large-arc-flag<DD><CODE>sweepFlag</CODE> - the value of the sweep-flag<DD><CODE>x</CODE> - the relative x coordinate for the end point<DD><CODE>y</CODE> - the relative y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>
throws <AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></PRE>
<DL>
<DD>Invoked when an absolute elliptical arc command has been parsed.
<p>Command : <b>A</b>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rx</CODE> - the X axis radius for the ellipse<DD><CODE>ry</CODE> - the Y axis radius for the ellipse<DD><CODE>xAxisRotation</CODE> - the rotation angle in degrees for the ellipse's
X-axis relative to the X-axis<DD><CODE>largeArcFlag</CODE> - the value of the large-arc-flag<DD><CODE>sweepFlag</CODE> - the value of the sweep-flag<DD><CODE>x</CODE> - the absolute x coordinate for the end point<DD><CODE>y</CODE> - the absolute y coordinate for the end point
<DT><B>Throws:</B>
<DD><CODE><AHREF="../../../../com/mxgraph/util/svg/ParseException.html"title="class in com.mxgraph.util.svg">ParseException</A></CODE> - if an error occured while processing the path</DL>