package org.simantics.g3d.property.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.simantics.g3d.property.AnnotatedPropertyTabContributorFactory; import org.simantics.g3d.property.PropertyTabContributorFactory; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface PropertyContributor { Class value() default AnnotatedPropertyTabContributorFactory.class; }