package test_streamer.client; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * An alternative name of a property. * @author kawasima */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface PropertyName { String value(); }