Package com.sun.tahiti.compiler

Examples of com.sun.tahiti.compiler.ControllerImpl


    final File od = outDir;
    ModelGenerator generator = null;
    Controller controller;
    if( out==xml ) {
      generator = ModelGenerator.xmlGenerator;
      controller = new ControllerImpl(grammarController) {
        public OutputStream getOutput( TypeItem item ) throws IOException {
          return new FileOutputStream(
            new File( od, item.getTypeName()+".xml") );
        }
      };
    } else {
      generator = ModelGenerator.javaGenerator;
      controller = new ControllerImpl(grammarController) {
        public OutputStream getOutput( TypeItem item ) throws IOException {
          return new FileOutputStream(
            getJavaFile( od, item.getTypeName() ) );
        }
      };
View Full Code Here

TOP

Related Classes of com.sun.tahiti.compiler.ControllerImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.