]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/annotations/SCLValue.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.reflection / src / org / simantics / scl / reflection / annotations / SCLValue.java
diff --git a/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/annotations/SCLValue.java b/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/annotations/SCLValue.java
new file mode 100755 (executable)
index 0000000..fc07081
--- /dev/null
@@ -0,0 +1,13 @@
+package org.simantics.scl.reflection.annotations;\r
+\r
+import java.lang.annotation.ElementType;\r
+import java.lang.annotation.Retention;\r
+import java.lang.annotation.RetentionPolicy;\r
+import java.lang.annotation.Target;\r
+\r
+@Retention(RetentionPolicy.RUNTIME)\r
+@Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD})\r
+public @interface SCLValue {\r
+    public String name() default "";\r
+    public String type();\r
+}\r