aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java
diff options
context:
space:
mode:
Diffstat (limited to 'javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java')
-rw-r--r--javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java21
1 files changed, 7 insertions, 14 deletions
diff --git a/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java b/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java
index 9fbc6e6ff..d3e20b284 100644
--- a/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java
+++ b/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/Visitable.java
@@ -4,14 +4,10 @@ public interface Visitable {
/**
* Accept method for visitor support.
*
- * @param <R>
- * the type of the return value of the visitor
- * @param <A>
- * the type the user argument passed to the visitor
- * @param v
- * the visitor implementation
- * @param arg
- * the argument passed to the visitor (of type A)
+ * @param <R> the type of the return value of the visitor
+ * @param <A> the type the user argument passed to the visitor
+ * @param v the visitor implementation
+ * @param arg the argument passed to the visitor (of type A)
* @return the result of the visit (of type R)
*/
<R, A> R accept(GenericVisitor<R, A> v, A arg);
@@ -19,12 +15,9 @@ public interface Visitable {
/**
* Accept method for visitor support.
*
- * @param <A>
- * the type the argument passed for the visitor
- * @param v
- * the visitor implementation
- * @param arg
- * any value relevant for the visitor (of type A)
+ * @param <A> the type the argument passed for the visitor
+ * @param v the visitor implementation
+ * @param arg any value relevant for the visitor (of type A)
*/
<A> void accept(VoidVisitor<A> v, A arg);
}