Java Code Examples for com.sun.tools.internal.jxc.ap.Options#parseArguments()
The following examples show how to use
com.sun.tools.internal.jxc.ap.Options#parseArguments() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SchemaGenerator.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }
Example 2
Source File: SchemaGenerator.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }
Example 3
Source File: SchemaGenerator.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }
Example 4
Source File: SchemaGenerator.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }
Example 5
Source File: SchemaGenerator.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor aptargs.add("--add-modules"); aptargs.add("java.xml.bind"); if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }
Example 6
Source File: SchemaGenerator.java From hottub with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }
Example 7
Source File: SchemaGenerator.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }
Example 8
Source File: SchemaGenerator.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Runs the schema generator. * * @param classLoader * the schema generator will run in this classLoader. * It needs to be able to load annotation processing and JAXB RI classes. Note that * JAXB RI classes refer to annotation processing classes. Must not be null. * * @return * exit code. 0 if success. * */ public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { final Options options = new Options(); if (args.length ==0) { usage(); return -1; } for (String arg : args) { if (arg.equals("-help")) { usage(); return -1; } if (arg.equals("-version")) { System.out.println(Messages.VERSION.format()); return -1; } if (arg.equals("-fullversion")) { System.out.println(Messages.FULLVERSION.format()); return -1; } } try { options.parseArguments(args); } catch (BadCommandLineException e) { // there was an error in the command line. // print usage and abort. System.out.println(e.getMessage()); System.out.println(); usage(); return -1; } Class schemagenRunner = classLoader.loadClass(Runner.class.getName()); Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class); List<String> aptargs = new ArrayList<String>(); if (options.encoding != null) { aptargs.add("-encoding"); aptargs.add(options.encoding); } aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); } aptargs.addAll(options.arguments); String[] argsarray = aptargs.toArray(new String[aptargs.size()]); return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1; }