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.DefaultPropertyManipulatorFactory; import org.simantics.g3d.property.PropertyManipulatorFactory; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface GetPropertyValue { String value(); String name() default ""; String tabId() default "Default"; Class manipulator() default DefaultPropertyManipulatorFactory.class; }