X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Felaboration%2Fmodules%2FDeprecatedProperty.java;fp=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Felaboration%2Fmodules%2FDeprecatedProperty.java;h=8298bfc1bf571054e4b31491919f3c5a7cc2b0f8;hb=7045f0f516c243563976207abcec13a68891ff1d;hp=0000000000000000000000000000000000000000;hpb=fa9b9d56a9a16226e6409724cedfbbe94463b301;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/DeprecatedProperty.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/DeprecatedProperty.java new file mode 100644 index 000000000..8298bfc1b --- /dev/null +++ b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/DeprecatedProperty.java @@ -0,0 +1,9 @@ +package org.simantics.scl.compiler.elaboration.modules; + +public class DeprecatedProperty implements SCLValueProperty { + public final String description; + + public DeprecatedProperty(String description) { + this.description = description; + } +}