X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.reflection%2Fsrc%2Forg%2Fsimantics%2Fscl%2Freflection%2Fannotations%2FSCLValue.java;fp=bundles%2Forg.simantics.scl.reflection%2Fsrc%2Forg%2Fsimantics%2Fscl%2Freflection%2Fannotations%2FSCLValue.java;h=fc070812442e9b331b95c2385bed557f0400775e;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git 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 index 000000000..fc0708124 --- /dev/null +++ b/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/annotations/SCLValue.java @@ -0,0 +1,13 @@ +package org.simantics.scl.reflection.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention(RetentionPolicy.RUNTIME) +@Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD}) +public @interface SCLValue { + public String name() default ""; + public String type(); +}