You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by th...@apache.org on 2019/12/30 01:33:13 UTC

[commons-dbutils] 01/06: Add javadoc to new annotation

This is an automated email from the ASF dual-hosted git repository.

thecarlhall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbutils.git

commit 6ae607096aff1a2910c16b872fce5b6a041c4443
Author: Carl Hall <th...@apache.org>
AuthorDate: Sun Dec 29 17:05:23 2019 -0800

    Add javadoc to new annotation
---
 src/main/java/org/apache/commons/dbutils/annotations/Column.java | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/main/java/org/apache/commons/dbutils/annotations/Column.java b/src/main/java/org/apache/commons/dbutils/annotations/Column.java
index 231c4c1..4835d24 100644
--- a/src/main/java/org/apache/commons/dbutils/annotations/Column.java
+++ b/src/main/java/org/apache/commons/dbutils/annotations/Column.java
@@ -21,6 +21,11 @@ import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 
+/**
+ * Annotation for BeanProcessor to receive hints of the field name rather than dissecting the method name.
+ *
+ * @since 2.0
+ */
 @Target({ ElementType.METHOD})
 @Retention(RetentionPolicy.RUNTIME)
 public @interface Column {