Package org.netbeans.gradle.project.query

Examples of org.netbeans.gradle.project.query.J2SEPlatformFromScriptQuery


    private J2SEPlatformFromScriptQuery tryGetPlatformScriptQuery() {
        return project.getCombinedExtensionLookup().lookup(J2SEPlatformFromScriptQuery.class);
    }

    private String tryGetScriptSourceLevel() {
        J2SEPlatformFromScriptQuery query = tryGetPlatformScriptQuery();
        return query != null ? query.getSourceLevel() : null;
    }
View Full Code Here


        J2SEPlatformFromScriptQuery query = tryGetPlatformScriptQuery();
        return query != null ? query.getSourceLevel() : null;
    }

    private ProjectPlatform tryGetScriptPlatform() {
        J2SEPlatformFromScriptQuery query = tryGetPlatformScriptQuery();
        return query != null ? query.getPlatform(): null;
    }
View Full Code Here

TOP

Related Classes of org.netbeans.gradle.project.query.J2SEPlatformFromScriptQuery

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.