]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d/src/org/simantics/g3d/property/annotations/PropertyContributor.java
3D framework (Simca 2012)
[simantics/3d.git] / org.simantics.g3d / src / org / simantics / g3d / property / annotations / PropertyContributor.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.AnnotatedPropertyTabContributorFactory;\r
9 import org.simantics.g3d.property.PropertyTabContributorFactory;\r
10 \r
11 @Retention(RetentionPolicy.RUNTIME)\r
12 @Target(ElementType.TYPE) \r
13 public @interface PropertyContributor {\r
14         Class<? extends PropertyTabContributorFactory> value() default AnnotatedPropertyTabContributorFactory.class;\r
15 }\r