package org.simantics.objmap.structural.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.simantics.objmap.graph.annotations.HasSetter; import org.simantics.objmap.graph.annotations.meta.IsGetSetRule; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @IsGetSetRule @HasSetter(StructuralRelatedSetObj.class) public @interface StructuralRelatedGetObj { String value(); }