Skip to content

Commit bab53e8

Browse files
committed
Merge pull request #628 from kazuki43zoo/add-documented
Add @documented
2 parents 5ac2cf1 + dddbe2a commit bab53e8

32 files changed

+64
-0
lines changed

src/main/java/org/apache/ibatis/annotations/Arg.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -27,6 +28,7 @@
2728
/**
2829
* @author Clinton Begin
2930
*/
31+
@Documented
3032
@Retention(RetentionPolicy.RUNTIME)
3133
@Target(ElementType.METHOD)
3234
public @interface Arg {

src/main/java/org/apache/ibatis/annotations/CacheNamespace.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -26,6 +27,7 @@
2627
/**
2728
* @author Clinton Begin
2829
*/
30+
@Documented
2931
@Retention(RetentionPolicy.RUNTIME)
3032
@Target(ElementType.TYPE)
3133
public @interface CacheNamespace {

src/main/java/org/apache/ibatis/annotations/CacheNamespaceRef.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -23,6 +24,7 @@
2324
/**
2425
* @author Clinton Begin
2526
*/
27+
@Documented
2628
@Retention(RetentionPolicy.RUNTIME)
2729
@Target(ElementType.TYPE)
2830
public @interface CacheNamespaceRef {

src/main/java/org/apache/ibatis/annotations/Case.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -23,6 +24,7 @@
2324
/**
2425
* @author Clinton Begin
2526
*/
27+
@Documented
2628
@Retention(RetentionPolicy.RUNTIME)
2729
@Target(ElementType.METHOD)
2830
public @interface Case {

src/main/java/org/apache/ibatis/annotations/ConstructorArgs.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -23,6 +24,7 @@
2324
/**
2425
* @author Clinton Begin
2526
*/
27+
@Documented
2628
@Retention(RetentionPolicy.RUNTIME)
2729
@Target(ElementType.METHOD)
2830
public @interface ConstructorArgs {

src/main/java/org/apache/ibatis/annotations/Delete.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -23,6 +24,7 @@
2324
/**
2425
* @author Clinton Begin
2526
*/
27+
@Documented
2628
@Retention(RetentionPolicy.RUNTIME)
2729
@Target(ElementType.METHOD)
2830
public @interface Delete {

src/main/java/org/apache/ibatis/annotations/DeleteProvider.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -23,6 +24,7 @@
2324
/**
2425
* @author Clinton Begin
2526
*/
27+
@Documented
2628
@Retention(RetentionPolicy.RUNTIME)
2729
@Target(ElementType.METHOD)
2830
public @interface DeleteProvider {

src/main/java/org/apache/ibatis/annotations/Flush.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -26,6 +27,7 @@
2627
* @author Kazuki Shimizu
2728
* @since 3.3.0
2829
*/
30+
@Documented
2931
@Retention(RetentionPolicy.RUNTIME)
3032
@Target(ElementType.METHOD)
3133
public @interface Flush {

src/main/java/org/apache/ibatis/annotations/Insert.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -23,6 +24,7 @@
2324
/**
2425
* @author Clinton Begin
2526
*/
27+
@Documented
2628
@Retention(RetentionPolicy.RUNTIME)
2729
@Target(ElementType.METHOD)
2830
public @interface Insert {

src/main/java/org/apache/ibatis/annotations/InsertProvider.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18+
import java.lang.annotation.Documented;
1819
import java.lang.annotation.ElementType;
1920
import java.lang.annotation.Retention;
2021
import java.lang.annotation.RetentionPolicy;
@@ -23,6 +24,7 @@
2324
/**
2425
* @author Clinton Begin
2526
*/
27+
@Documented
2628
@Retention(RetentionPolicy.RUNTIME)
2729
@Target(ElementType.METHOD)
2830
public @interface InsertProvider {

0 commit comments

Comments
 (0)