]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph.compiler/src/org/simantics/graph/compiler/GraphCompilerPreferences.java
Fix to OrderedSetTemplate, preference for autocompletion
[simantics/platform.git] / bundles / org.simantics.graph.compiler / src / org / simantics / graph / compiler / GraphCompilerPreferences.java
index 6487d8e91db22cd61a8b84d06918b8d8f5666737..ca81b6974b5d848620493988d36a98e3caddef05 100644 (file)
@@ -4,6 +4,7 @@ public class GraphCompilerPreferences {
        public boolean        validate = false;
        public ValidationMode validateRelationRestrictions = ValidationMode.IGNORE;
        public ValidationMode validateResourceHasType = ValidationMode.IGNORE;
+    public boolean autoCompletion;
        
        @Override
        public String toString() {
@@ -11,6 +12,7 @@ public class GraphCompilerPreferences {
            b.append("validate = " + validate + "\n");
            b.append("validateRelationRestrictions = " + validateRelationRestrictions + "\n");
            b.append("validateResourceHasType = " + validateResourceHasType + "\n");
+           b.append("autoCompletion = " + autoCompletion + "\n");
            return b.toString();
        }
 }