package java; import java.io.*; import aioli.vtp.*; import aioli.variable.*; public final class XML { public final static void main(String[] theArgs) { try { Tree tree = JavaParser.parse(new FileInputStream(theArgs[0])); PrintStream f = System.out; PrintWriter ps = new PrintWriter(f,true); tree.genXML(ps); } catch (FileNotFoundException e) { System.err.println("exception: "+e); } catch (java.lang.Exception e) { System.err.println("exception: "+e); } } }