StringWriter sw = new StringWriter();
XDataSource os = new XDataSource( currentProject );
if ( model instanceof DumpWriter )
((DumpWriter)model).dump( sw );
else
os.outputModel( sw, model );
System.out.print( sw.toString());
writeLine( "--------------------------------------------------------------------------------");
}
}
}