Package org.openquark.cal.services.ProgramModelManager

Examples of org.openquark.cal.services.ProgramModelManager.CompilationOptions


   
    /**
     * Get compiler options
     */
    public CompilationOptions getCompilationOptions() {
        return new CompilationOptions(compilerOptions);
    }
View Full Code Here


    /**
     * set the compilation options - if they are not set default compilation options will be used
     * @param options the compilation options to use when running code.
     */
    public void setCompilationOptions(CompilationOptions options) {
        compilerOptions = new CompilationOptions(options);
    }
View Full Code Here

    /**
     * @return the default compilation options, with the for immediate use flag set to true.
     */
    private static CompilationOptions makeDefaultCompilationOptions() {
        CompilationOptions options = new CompilationOptions();
        options.setForImmediateUse(true);
        return options;
    }
View Full Code Here

TOP

Related Classes of org.openquark.cal.services.ProgramModelManager.CompilationOptions

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.