]> gerrit.simantics Code Review - simantics/platform.git/blob - SCLValue.java
2cae7cb41000a9753a351f61e1b127b0b239d403
[simantics/platform.git] / SCLValue.java
1 package org.simantics.scl.reflection.annotations;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 @Retention(RetentionPolicy.RUNTIME)
9 @Target({ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD})
10 public @interface SCLValue {
11     public String name() default "";
12     public String type();
13 }