X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.graph.compiler%2Fsrc%2Forg%2Fsimantics%2Fgraph%2Fcompiler%2FGraphCompilerPreferences.java;fp=bundles%2Forg.simantics.graph.compiler%2Fsrc%2Forg%2Fsimantics%2Fgraph%2Fcompiler%2FGraphCompilerPreferences.java;h=ca81b6974b5d848620493988d36a98e3caddef05;hp=6487d8e91db22cd61a8b84d06918b8d8f5666737;hb=804e2db842bdda00bb28a1f599a5293644c8d55e;hpb=96ae58fda842dcd8266192eeb1399324b092154a diff --git a/bundles/org.simantics.graph.compiler/src/org/simantics/graph/compiler/GraphCompilerPreferences.java b/bundles/org.simantics.graph.compiler/src/org/simantics/graph/compiler/GraphCompilerPreferences.java index 6487d8e91..ca81b6974 100644 --- a/bundles/org.simantics.graph.compiler/src/org/simantics/graph/compiler/GraphCompilerPreferences.java +++ b/bundles/org.simantics.graph.compiler/src/org/simantics/graph/compiler/GraphCompilerPreferences.java @@ -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(); } }