}
public static void main( final String[] args ) throws Exception
{
final Document parsedDocument = Main.getDocument( "/helloworld.xml" );
final HelloWorld helloWorld = XML2Java.bind( parsedDocument, HelloWorld.class );
System.out.println( helloWorld.getMessageFromElement() );
System.out.println( helloWorld.getMessageFromAttribute() );
}