private J2SEPlatformFromScriptQuery tryGetPlatformScriptQuery() {
return project.getCombinedExtensionLookup().lookup(J2SEPlatformFromScriptQuery.class);
}
private String tryGetScriptSourceLevel() {
J2SEPlatformFromScriptQuery query = tryGetPlatformScriptQuery();
return query != null ? query.getSourceLevel() : null;
}