This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.lang.model.util
class AbstractTypeVisitor6

java.lang.Object extended by javax.lang.model.util.AbstractTypeVisitor6
All Implemented Interfaces:
TypeVisitor
Direct Known Subclasses:
SimpleTypeVisitor6

public abstract class AbstractTypeVisitor6
extends Object
implements TypeVisitor

A skeletal visitor of types with default behavior appropriate for the version 6 language level.

WARNING: The {@code TypeVisitor} interface implemented by this class may have methods added to it in the future to accommodate new, currently unknown, language structures added to future versions of the Java™ programming language. Therefore, methods whose names begin with {@code "visit"} may be added to this class in the future; to avoid incompatibilities, classes which extend this class should not declare any instance methods with names beginning with {@code "visit"}.

When such a new visit method is added, the default implementation in this class will be to call the {@link #visitUnknown visitUnknown} method. A new abstract type visitor class will also be introduced to correspond to the new language level; this visitor will have different default behavior for the visit method in question. When the new visitor is introduced, all or portions of this visitor may be deprecated.


Constructor Summary
protected

          Constructor for concrete subclasses to call.
 
Method Summary
 Object

          Visits any type mirror as if by passing itself to that type mirror's javax.lang.model.type.TypeMirror.accept method and passing for the additional parameter.
 Object

          Visits any type mirror as if by passing itself to that type mirror's javax.lang.model.type.TypeMirror.accept method.
 Object

          
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractTypeVisitor6

protected AbstractTypeVisitor6()
Constructor for concrete subclasses to call.

Method Detail

visit

public final Object visit(TypeMirror t)
Visits any type mirror as if by passing itself to that type mirror's {@link TypeMirror#accept accept} method and passing {@code null} for the additional parameter. The invocation {@code v.visit(t)} is equivalent to {@code t.accept(v, null)}.

Parameters:
t - the type to visit
Returns:
a visitor-specified result

visit

public final Object visit(TypeMirror t,
                          Object p)
Visits any type mirror as if by passing itself to that type mirror's {@link TypeMirror#accept accept} method. The invocation {@code v.visit(t, p)} is equivalent to {@code t.accept(v, p)}.

Parameters:
t - the type to visit
p - a visitor-specified parameter
Returns:
a visitor-specified result

visitUnknown

public Object visitUnknown(TypeMirror t,
                           Object p)
{@inheritDoc}

The default implementation of this method in {@code AbstractTypeVisitor6} will always throw {@code UnknownTypeException}. This behavior is not required of a subclass.

Parameters:
t - the type to visit
p
Returns:
a visitor-specified result


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.