Top Description Constructors Methods
javax.lang.model.util

public Class SimpleElementVisitor8<R, P>

extends SimpleElementVisitor7<R, P>
Class Inheritance
Known Direct Subclasses
javax.lang.model.util.SimpleElementVisitor9
Annotations
@SupportedSourceVersion:RELEASE_8
Type Parameters
<R>
the return type of this visitor's methods. Use Void for visitors that do not need to return results.
<P>
the type of the additional parameter to this visitor's methods. Use Void for visitors that do not need an additional parameter.
Imports
javax.annotation.processing.SupportedSourceVersion, javax.lang.model.SourceVersion

A simple visitor of program elements with default behavior appropriate for the RELEASE_8 source version. Visit methods corresponding to RELEASE_8 and earlier language constructs call defaultAction, passing their arguments to defaultAction's corresponding parameters.

API Note

Methods in this class may be overridden subject to their general contract.

Since
1.8
See Also
Compatibility note for subclasses, SimpleElementVisitor6, SimpleElementVisitor7, SimpleElementVisitor9, SimpleElementVisitor14

Constructor Summary

AccessConstructor and Description
protected
SimpleElementVisitor8()

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

protected
SimpleElementVisitor8(R
the value to assign to DEFAULT_VALUE
defaultValue
)

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

Method Summary

Inherited from javax.lang.model.util.SimpleElementVisitor7:
visitVariable

Constructor Detail

SimpleElementVisitor8back to summary
protected SimpleElementVisitor8()

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

Annotations
@SuppressWarnings:deprecation
SimpleElementVisitor8back to summary
protected SimpleElementVisitor8(R defaultValue)

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

Parameters
defaultValue:R

the value to assign to DEFAULT_VALUE

Annotations
@SuppressWarnings:deprecation