]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/module/Module.java
(refs #7105) Added defaultLocalName property to SCL modules
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / module / Module.java
index 180509521312ca6e7bb014ec0d99e8ba7ab015b2..aff2e2d7f815e1ee5c7c3caa15a0fe43a5e47f40 100644 (file)
@@ -25,6 +25,7 @@ import gnu.trove.procedure.TObjectProcedure;
 
 public interface Module {
     String getName();
+    String getDefaultLocalName();
     
     SCLValue getValue(String name);
     SCLRelation getRelation(String name);
@@ -54,5 +55,5 @@ public interface Module {
     void dispose();
 
     CompilationError[] getWarnings();
-    
+    ClassLoader getParentClassLoader();
 }