forked from plusone/plusone-commons
21 lines
469 B
Java
21 lines
469 B
Java
package xyz.zhouxy.plusone.commons.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* ReaderMethod
|
|
*
|
|
* <p>
|
|
* 标识方法是读方法,如 getter。
|
|
*
|
|
* @author <a href="http://zhouxy.xyz:3000/ZhouXY108">ZhouXY</a>
|
|
* @since 1.0
|
|
*/
|
|
@Target(ElementType.METHOD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface ReaderMethod {
|
|
}
|