summaryrefslogtreecommitdiff
path: root/javax/lang/model/util/AbstractTypeVisitor6.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/AbstractTypeVisitor6.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/AbstractTypeVisitor6.java')
-rw-r--r--javax/lang/model/util/AbstractTypeVisitor6.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/javax/lang/model/util/AbstractTypeVisitor6.java b/javax/lang/model/util/AbstractTypeVisitor6.java
index 7d907187d..54f500888 100644
--- a/javax/lang/model/util/AbstractTypeVisitor6.java
+++ b/javax/lang/model/util/AbstractTypeVisitor6.java
@@ -54,7 +54,7 @@ import javax.lang.model.type.UnknownTypeException;
* in order to support later language versions, methods beginning with
* the phrase {@code "visit"} should be avoided in subclasses. This
* class itself will be extended to direct these new methods to the
- * {@link #visitUnknown(TypeMirror,P) method and a new class will be
+ * {@link #visitUnknown(TypeMirror,P)} method and a new class will be
* added to provide implementations for the new language version.
* At this time, all or some of this class may be deprecated.</p>
*