Skip to content

Commit 75b6b13

Browse files
committed
Add javadoc at AutomapConstructor
See gh-809
1 parent 8bd0701 commit 75b6b13

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,18 @@
1515
*/
1616
package org.apache.ibatis.annotations;
1717

18-
import java.lang.annotation.*;
18+
import java.lang.annotation.Documented;
19+
import java.lang.annotation.ElementType;
20+
import java.lang.annotation.Retention;
21+
import java.lang.annotation.RetentionPolicy;
22+
import java.lang.annotation.Target;
1923

24+
/**
25+
* The marker annotation that indicate a constructor for automatic mapping.
26+
*
27+
* @author Tim Chen
28+
* @since 3.4.3
29+
*/
2030
@Documented
2131
@Retention(RetentionPolicy.RUNTIME)
2232
@Target({ElementType.CONSTRUCTOR})

0 commit comments

Comments
 (0)