Java 类org.jsonschema2pojo.Jsonschema2Pojo 实例源码

项目:GitHub    文件:Jsonschema2PojoCLI.java   
/**
 * Main method, entry point for the application when invoked via the command
 * line. Arguments are expected in POSIX format, invoke with --help for
 * details.
 * 
 * @param args
 *            Incoming arguments from the command line
 * @throws FileNotFoundException
 *             if the paths specified on the command line are not found
 * @throws IOException
 *             if the application is unable to read data from the paths
 *             specified
 */
public static void main(String[] args) throws IOException {

    Arguments arguments = new Arguments().parse(args);

    Jsonschema2Pojo.generate(arguments);
}