Blame view

java110-doc/src/main/java/com/java110/doc/annotation/Java110ParamDoc.java 499 Bytes
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  package com.java110.doc.annotation;
  
  import java.lang.annotation.ElementType;
  import java.lang.annotation.Retention;
  import java.lang.annotation.RetentionPolicy;
  import java.lang.annotation.Target;
  
  @Target(ElementType.TYPE)
  @Retention(RetentionPolicy.RUNTIME)
  public @interface Java110ParamDoc {
  
      String parentNodeName() default "-";
  
      String name();
  
      String type() default "String";
  
      int length() default 0;
  
      String defaultValue() default "";
  
      String remark() default "";
  }