/* * Copyright (C) 2007 Anders Nilsson <anders.nilsson@cs.lth.se> * * This file is part of XmlSchemaCompiler. */ import AST.Start; public class GenHTML extends Parser { public static void main(String args[]) { Start ast = parse(args); // Dump the AST ast.genHTML(0, System.out); } }