package org.simantics.g3d.objmap.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.objmap.annotations.factories.RelatedElementsRuleFactory; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @HasCollectionRuleFactory(RelatedElementsRuleFactory.class) @HasCollectionAdder(RelatedElementsAdd.class) @HasCollectionRemover(RelatedElementsRem.class) public @interface RelatedElementsGet { String value(); }