]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d/src/org/simantics/g3d/property/annotations/GetPropertyValue.java
d79fb9a3016126880927f5cb139675124c57be56
[simantics/3d.git] / org.simantics.g3d / src / org / simantics / g3d / property / annotations / GetPropertyValue.java
1 package org.simantics.g3d.property.annotations;\r
2 \r
3 import java.lang.annotation.ElementType;\r
4 import java.lang.annotation.Retention;\r
5 import java.lang.annotation.RetentionPolicy;\r
6 import java.lang.annotation.Target;\r
7 \r
8 import org.simantics.g3d.property.DefaultPropertyManipulatorFactory;\r
9 import org.simantics.g3d.property.PropertyManipulatorFactory;\r
10 \r
11 @Retention(RetentionPolicy.RUNTIME)\r
12 @Target(ElementType.METHOD)\r
13 public @interface GetPropertyValue {\r
14         String value();\r
15         String name() default "";\r
16         String tabId() default "Default";\r
17         Class<? extends PropertyManipulatorFactory> manipulator() default DefaultPropertyManipulatorFactory.class; \r
18 }\r