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 SimpleAnnotationValueVisitor6

java.lang.Object extended by javax.lang.model.util.AbstractAnnotationValueVisitor6 extended by javax.lang.model.util.SimpleAnnotationValueVisitor6
All Implemented Interfaces:
AnnotationValueVisitor

public class SimpleAnnotationValueVisitor6
extends AbstractAnnotationValueVisitor6

A simple visitor for annotation values with default behavior appropriate for the {@link SourceVersion#RELEASE_6 RELEASE_6} source version. Visit methods 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 AnnotationValueVisitor} 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 annotation value 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.SimpleAnnotationValueVisitor6.defaultAction returns this value unless the method is overridden.
 
Constructor Summary
protected

          Constructor for concrete subclasses; uses for the default value.
protected

          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
visitBoolean(boolean b, Object p)

           This implementation calls .
 Object
visitByte(byte b, Object p)

           This implementation calls .
 Object
visitChar(char c, Object p)

           This implementation calls .
 Object
visitDouble(double d, Object p)

           This implementation calls .
 Object

           This implementation calls .
 Object
visitFloat(float f, Object p)

           This implementation calls .
 Object
visitInt(int i, Object p)

           This implementation calls .
 Object
visitLong(long i, Object p)

           This implementation calls .
 Object
visitShort(short s, Object p)

           This implementation calls .
 Object

           This implementation calls .
 Object

           This implementation calls .
 
Methods inherited from class javax.lang.model.util.AbstractAnnotationValueVisitor6
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

SimpleAnnotationValueVisitor6

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


SimpleAnnotationValueVisitor6

protected SimpleAnnotationValueVisitor6(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(Object o,
                               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:
o - the value of the annotation
p - a visitor-specified parameter
Returns:
{@code DEFAULT_VALUE} unless overridden

visitAnnotation

public Object visitAnnotation(AnnotationMirror a,
                              Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitArray

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

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

visitBoolean

public Object visitBoolean(boolean b,
                           Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitByte

public Object visitByte(byte b,
                        Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitChar

public Object visitChar(char c,
                        Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitDouble

public Object visitDouble(double d,
                          Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitEnumConstant

public Object visitEnumConstant(VariableElement c,
                                Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitFloat

public Object visitFloat(float f,
                         Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitInt

public Object visitInt(int i,
                       Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitLong

public Object visitLong(long i,
                        Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitShort

public Object visitShort(short s,
                         Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitString

public Object visitString(String s,
                          Object p)
{@inheritDoc} This implementation calls {@code defaultAction}.

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

visitType

public Object visitType(TypeMirror 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/.