summaryrefslogtreecommitdiff
path: root/javax/lang/model/element/ElementVisitor.java
diff options
context:
space:
mode:
Diffstat (limited to 'javax/lang/model/element/ElementVisitor.java')
-rw-r--r--javax/lang/model/element/ElementVisitor.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/javax/lang/model/element/ElementVisitor.java b/javax/lang/model/element/ElementVisitor.java
index 0f112b98b..fd184c968 100644
--- a/javax/lang/model/element/ElementVisitor.java
+++ b/javax/lang/model/element/ElementVisitor.java
@@ -53,11 +53,12 @@ package javax.lang.model.element;
* interface. However, this interface should be used as the type
* for parameters and return values.</p>
*
- * @param R the return type of the visitor's methods. {@code Void}
- * can be used where there is no return value.
- * @param P the type of the additional parameter supplied to the visitor's
- * methods.
+ * @param <R> the return type of the visitor's methods. {@code Void}
+ * can be used where there is no return value.
+ * @param <P> the type of the additional parameter supplied to the visitor's
+ * methods.
*
+ * @author Andrew John Hughes (gnu_andrew@member.fsf.org)
* @since 1.6
*/
public interface ElementVisitor<R,P>