Class Path2DDoubleXmlConverter

java.lang.Object
org.jhotdraw8.draw.xml.converter.Path2DDoubleXmlConverter
All Implemented Interfaces:
org.jhotdraw8.base.converter.Converter<Path2D.Double>

public class Path2DDoubleXmlConverter extends Object implements org.jhotdraw8.base.converter.Converter<Path2D.Double>
Converts an Path2D.Double from/to an XML attribute text.
 unicode       = '\' , ( 6 * hexd
                       | hexd , 5 * [hexd] , w
                       );
 escape        = ( unicode
                 | '\' , -( newline | hexd)
                 ) ;
 string        = string1 | string2 ;
 string1       = '"' , { -( '"' ) | '\\' , newline |  escape } , '"' ;
 string2       = "'" , { -( "'" ) | '\\' , newline |  escape } , "'" ;
 
Author:
Werner Randelshofer