summaryrefslogtreecommitdiff
path: root/javax/lang/model/util/ElementKindVisitor6.java
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2015-11-27 08:22:17 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2015-12-22 01:59:02 +0000
commit11d1d8efc1b17eb87b4cd6aa5ae82f67cb862e96 (patch)
treebb2ab2a0c820ddcb5a8a91e76f5da0e522e662eb /javax/lang/model/util/ElementKindVisitor6.java
parentf41a2c18c6dd259d21cf72a0e66e68c7a0c9a808 (diff)
downloadclasspath-11d1d8efc1b17eb87b4cd6aa5ae82f67cb862e96.tar.gz
Add remaining javax.lang.model.util classes for Java 7.
2015-11-26 Andrew John Hughes <gnu_andrew@member.fsf.org> * javax/lang/model/util/AbstractAnnotationValueVisitor6.java: Fix missing brace in Javadoc. * javax/lang/model/util/AbstractAnnotationValueVisitor7.java: New abstract class. (AbstractAnnotationValueVisitor7()): Implemented. * javax/lang/model/util/AbstractElementVisitor7.java, New abstract class. (AbstractElementVisitor7()): Implemented. * javax/lang/model/util/AbstractTypeVisitor6.java: Fix missing brace in Javadoc. * javax/lang/model/util/AbstractTypeVisitor7.java: New abstract class. (AbstractTypeVisitor7()): Implemented. (visitUnion(UnionType,P)): Likewise. * javax/lang/model/util/ElementKindVisitor6.java: (visitVariableAsResourceVariable(VariableElement,P)): Should call visitUnknown for version 6. * javax/lang/model/util/ElementKindVisitor7.java: New class. (ElementKindVisitor7()): Implemented. (ElementKindVisitor7(R)): Likewise. (visitVariableAsResourceVariable(VariableElement,P)): Implemented to return the result of defaultAction. * javax/lang/model/util/ElementScanner6.java: Fix missing brace in Javadoc. Add missing @return documentation. (visitVariable(VariableElement,P)): Should call visitUnknown on 6 if the element is a resource variable element. * javax/lang/model/util/ElementScanner7.java, New class. (ElementScanner7()): Implemented. (ElementScanner7(R)): Likewise. (visitVariable(VariableElement,P)): Implemented. * javax/lang/model/util/SimpleAnnotationValueVisitor7.java: New class. (SimpleAnnotationValueVisitor7()): Implemented. (SimpleAnnotationValueVisitor7(R)): Likewise. * javax/lang/model/util/SimpleElementVisitor6.java: (visitVariable(VariableElement,P)): Should call visitUnknown on 6 if the element is a resource variable element. * javax/lang/model/util/SimpleElementVisitor7.java: New class. (SimpleElementVisitor7()): Implemented. (SimpleElementVisitor7(R)): Likewise. (visitVariable(VariableElement,P)): Implemented. * javax/lang/model/util/SimpleTypeVisitor6.java: (SimpleTypeVisitor6): Fix copy-and-paste error in documentation. * javax/lang/model/util/SimpleTypeVisitor7.java: New class. (SimpleTypeVisitor7()): Implemented. (SimpleTypeVisitor7(R)): Likewise. (visitUnion(UnionType,P)): Implemented. * javax/lang/model/util/TypeKindVisitor7.java, New class. (TypeKindVisitor7()): Implemented. (TypeKindVisitor7(R)): Likewise. (visitUnion(UnionType,P)): Implemented. Signed-off-by: Andrew John Hughes <gnu_andrew@member.fsf.org>
Diffstat (limited to 'javax/lang/model/util/ElementKindVisitor6.java')
-rw-r--r--javax/lang/model/util/ElementKindVisitor6.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/javax/lang/model/util/ElementKindVisitor6.java b/javax/lang/model/util/ElementKindVisitor6.java
index 8e9760ac3..d9d494271 100644
--- a/javax/lang/model/util/ElementKindVisitor6.java
+++ b/javax/lang/model/util/ElementKindVisitor6.java
@@ -416,16 +416,16 @@ public class ElementKindVisitor6<R,P> extends SimpleElementVisitor6<R,P>
/**
* Visits a {@code RESOURCE_VARIABLE} variable element. This implementation
- * simply calls {@code defaultAction(element, parameter)}.
+ * calls {@code visitUnknown(element, parameter)}.
*
- * @param element the resource variable variable element to visit.
+ * @param element the resource variable element to visit.
* @param parameter the additional parameter, specific to the visitor.
* May be {@code null}.
* @return the result of {@code defaultAction(element, parameter)}.
*/
public R visitVariableAsResourceVariable(VariableElement element, P parameter)
{
- return defaultAction(element, parameter);
+ return visitUnknown(element, parameter);
}
}