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 SimpleTypeVisitor6

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

public class SimpleTypeVisitor6
extends AbstractTypeVisitor6

A simple visitor of types with default behavior appropriate for the {@link SourceVersion#RELEASE_6 RELEASE_6} source version. Visit methods corresponding to {@code RELEASE_6} language constructs call {@link #defaultAction}, passing their arguments to {@code defaultAction}'s corresponding parameters.

Methods in this class may be overridden subject to their general contract. Note that annotating methods in concrete subclasses with {@link java.lang.Override @Override} will help ensure that methods are overridden as intended.

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 simple 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.


Field Summary
protected Object DEFAULT_VALUE
          Default value to be returned; javax.lang.model.util.SimpleTypeVisitor6.defaultAction returns this value unless the method is overridden.
 
Constructor Summary
protected

          Constructor for concrete subclasses; uses for the default value.
protected
SimpleTypeVisitor6(Object defaultValue)

          Constructor for concrete subclasses; uses the argument for the default value.
 
Method Summary
protected Object

          The default action for visit methods.
 Object

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 
Methods inherited from class javax.lang.model.util.AbstractTypeVisitor6
visit, visit, visitUnknown
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT_VALUE

protected final Object DEFAULT_VALUE
Default value to be returned; {@link #defaultAction defaultAction} returns this value unless the method is overridden.
Constructor Detail

SimpleTypeVisitor6

protected SimpleTypeVisitor6()
Constructor for concrete subclasses; uses {@code null} for the default value.


SimpleTypeVisitor6

protected SimpleTypeVisitor6(Object defaultValue)
Constructor for concrete subclasses; uses the argument for the default value.

Parameters:
defaultValue - the value to assign to {@link #DEFAULT_VALUE}
Method Detail

defaultAction

protected Object defaultAction(TypeMirror e,
                               Object p)
The default action for visit methods. The implementation in this class just returns {@link #DEFAULT_VALUE}; subclasses will commonly override this method.

Parameters:
e
p

visitArray

public Object visitArray(ArrayType t,
                         Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitDeclared

public Object visitDeclared(DeclaredType t,
                            Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitError

public Object visitError(ErrorType t,
                         Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitExecutable

public Object visitExecutable(ExecutableType t,
                              Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitNoType

public Object visitNoType(NoType t,
                          Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitNull

public Object visitNull(NullType t,
                        Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitPrimitive

public Object visitPrimitive(PrimitiveType t,
                             Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitTypeVariable

public Object visitTypeVariable(TypeVariable t,
                                Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}

visitWildcard

public Object visitWildcard(WildcardType t,
                            Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

Parameters:
t - {@inheritDoc}
p - {@inheritDoc}
Returns:
the result of {@code defaultAction}


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/.