public Action call = new AbstractAction() {
public void actionPerformed( ActionEvent e ) {
if( e.getActionCommand().equals("helloCommand") ){
try{
new SwingEngine( this ).render( "xatHelloWorld.xml" )
.setVisible( true );
} catch ( Exception err){ System.err.println(err); }
} } };
-_-_-