We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bd0701 commit 75b6b13Copy full SHA for 75b6b13
src/main/java/org/apache/ibatis/annotations/AutomapConstructor.java
@@ -15,8 +15,18 @@
15
*/
16
package org.apache.ibatis.annotations;
17
18
-import java.lang.annotation.*;
+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;
23
24
+/**
25
+ * The marker annotation that indicate a constructor for automatic mapping.
26
+ *
27
+ * @author Tim Chen
28
+ * @since 3.4.3
29
+ */
30
@Documented
31
@Retention(RetentionPolicy.RUNTIME)
32
@Target({ElementType.CONSTRUCTOR})
0 commit comments