Электронный магазин на Java и XML

         

Преобразование Image в XML (Image.java)



Листинг 6.30. Преобразование Image в XML (Image.java)

public void toXML( XMLWriter writer ) throws IOException { writer.write( "<image " );
writer.write( "format='" + format + "' " );
if( width != null ) writer.write( "width='" + width + "' " );
if( height != null ) writer.write( "height='" + height + "' " );
writer.writeln( "src='" + src + "'>
" );
writer.indent();
if( caption != null ) writer.writeln( "<caption>
" + caption + "</caption>
" );
writer.unindent();
writer.writeln( "</image>
" );
} }



Содержание раздела