Package spoon.support

Examples of spoon.support.StandardEnvironment


    private void doExecute(final int complianceLevel) throws Exception {

        getLog().info("Source compliance level: 1." + complianceLevel);
        getLog().info("Write processed sources to: " + outputDirectory.getAbsolutePath());

        final StandardEnvironment env = new StandardEnvironment();
        env.setVerbose(false);
        env.setDebug(false);
        env.setComplianceLevel(complianceLevel);
        final Factory factory = new Factory(new DefaultCoreFactory(), env);

        final Builder builder = factory.getBuilder();
        for (final File inputSource : inputSources) {
            getLog().info("Adding input source: " + inputSource.getPath());
View Full Code Here

TOP

Related Classes of spoon.support.StandardEnvironment

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.