forked from plusone/plusone-commons
完善 Javadoc。
parent
ce62bdcdc6
commit
cc10f11b37
|
@ -5,7 +5,15 @@ import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.RetentionPolicy;
|
||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
// TODO 添加 Javadoc
|
/**
|
||||||
|
* ReaderMethod
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* 标识方法是读方法,如 getter。
|
||||||
|
*
|
||||||
|
* @author <a href="http://zhouxy.xyz:3000/ZhouXY108">ZhouXY</a>
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
@Target(ElementType.METHOD)
|
@Target(ElementType.METHOD)
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
public @interface ReaderMethod {
|
public @interface ReaderMethod {
|
||||||
|
|
|
@ -5,7 +5,15 @@ import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.RetentionPolicy;
|
||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
// TODO 添加 Javadoc
|
/**
|
||||||
|
* WriterMethod
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* 标识方法是写方法,如 setter。
|
||||||
|
*
|
||||||
|
* @author <a href="http://zhouxy.xyz:3000/ZhouXY108">ZhouXY</a>
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
@Target(ElementType.METHOD)
|
@Target(ElementType.METHOD)
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
public @interface WriterMethod {
|
public @interface WriterMethod {
|
||||||
|
|
Loading…
Reference in New Issue