|
Préférences
Moteurs de recherche
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.6.0
javax.lang.model.util
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Field Summary |
|---|
| Fields inherited from class javax.lang.model.util.SimpleElementVisitor6 |
|---|
DEFAULT_VALUE |
| Constructor Summary | |
|---|---|
protected |
ElementKindVisitor6()
Constructor for concrete subclasses; uses null for the
default value. |
protected |
ElementKindVisitor6(R defaultValue)
Constructor for concrete subclasses; uses the argument for the default value. |
| Method Summary | |
|---|---|
R |
visitExecutable(ExecutableElement e,
P p)
Visits an executable element, dispatching to the visit method for the specific kind of executable, CONSTRUCTOR, INSTANCE_INIT, METHOD, or
STATIC_INIT. |
R |
visitExecutableAsConstructor(ExecutableElement e,
P p)
Visits a CONSTRUCTOR executable element by calling
defaultAction. |
R |
visitExecutableAsInstanceInit(ExecutableElement e,
P p)
Visits an INSTANCE_INIT executable element by calling
defaultAction. |
R |
visitExecutableAsMethod(ExecutableElement e,
P p)
Visits a METHOD executable element by calling
defaultAction. |
R |
visitExecutableAsStaticInit(ExecutableElement e,
P p)
Visits a STATIC_INIT executable element by calling
defaultAction. |
R |
visitPackage(PackageElement e,
P p)
Visits a package element. |
R |
visitType(TypeElement e,
P p)
Visits a type element, dispatching to the visit method for the specific kind of type, ANNOTATION_TYPE, CLASS, ENUM, or INTERFACE. |
R |
visitTypeAsAnnotationType(TypeElement e,
P p)
Visits an ANNOTATION_TYPE type element by calling
defaultAction. |
R |
visitTypeAsClass(TypeElement e,
P p)
Visits a CLASS type element by calling defaultAction. |
R |
visitTypeAsEnum(TypeElement e,
P p)
Visits an ENUM type element by calling defaultAction. |
R |
visitTypeAsInterface(TypeElement e,
P p)
Visits an INTERFACE type element by calling defaultAction. |
R |
visitTypeParameter(TypeParameterElement e,
P p)
Visits a type parameter element. |
R |
visitVariable(VariableElement e,
P p)
Visits a variable element, dispatching to the visit method for the specific kind of variable, ENUM_CONSTANT, EXCEPTION_PARAMETER, FIELD,
LOCAL_VARIABLE, or PARAMETER. |
R |
visitVariableAsEnumConstant(VariableElement e,
P p)
Visits an ENUM_CONSTANT variable element by calling
defaultAction. |
R |
visitVariableAsExceptionParameter(VariableElement e,
P p)
Visits an EXCEPTION_PARAMETER variable element by calling
defaultAction. |
R |
visitVariableAsField(VariableElement e,
P p)
Visits a FIELD variable element by calling
defaultAction. |
R |
visitVariableAsLocalVariable(VariableElement e,
P p)
Visits a LOCAL_VARIABLE variable element by calling
defaultAction. |
R |
visitVariableAsParameter(VariableElement e,
P p)
Visits a PARAMETER variable element by calling
defaultAction. |
| Methods inherited from class javax.lang.model.util.SimpleElementVisitor6 |
|---|
defaultAction |
| Methods inherited from class javax.lang.model.util.AbstractElementVisitor6 |
|---|
visit, visit, visitUnknown |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected ElementKindVisitor6()
null for the
default value.
protected ElementKindVisitor6(R defaultValue)
defaultValue - the value to assign to SimpleElementVisitor6.DEFAULT_VALUE| Method Detail |
|---|
public R visitPackage(PackageElement e, P p)
defaultAction.
The element argument has kind PACKAGE.
visitPackage in interface ElementVisitor<R,P>visitPackage in class SimpleElementVisitor6<R,P>e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitType(TypeElement e, P p)
ANNOTATION_TYPE, CLASS, ENUM, or INTERFACE.
visitType in interface ElementVisitor<R,P>visitType in class SimpleElementVisitor6<R,P>e - the element to visitp - a visitor-specified parameter
public R visitTypeAsAnnotationType(TypeElement e, P p)
ANNOTATION_TYPE type element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitTypeAsClass(TypeElement e, P p)
CLASS type element by calling defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitTypeAsEnum(TypeElement e, P p)
ENUM type element by calling defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitTypeAsInterface(TypeElement e, P p)
INTERFACE type element by calling defaultAction.
.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitVariable(VariableElement e, P p)
ENUM_CONSTANT, EXCEPTION_PARAMETER, FIELD,
LOCAL_VARIABLE, or PARAMETER.
visitVariable in interface ElementVisitor<R,P>visitVariable in class SimpleElementVisitor6<R,P>e - the element to visitp - a visitor-specified parameter
public R visitVariableAsEnumConstant(VariableElement e, P p)
ENUM_CONSTANT variable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitVariableAsExceptionParameter(VariableElement e, P p)
EXCEPTION_PARAMETER variable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitVariableAsField(VariableElement e, P p)
FIELD variable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitVariableAsLocalVariable(VariableElement e, P p)
LOCAL_VARIABLE variable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitVariableAsParameter(VariableElement e, P p)
PARAMETER variable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitExecutable(ExecutableElement e, P p)
CONSTRUCTOR, INSTANCE_INIT, METHOD, or
STATIC_INIT.
visitExecutable in interface ElementVisitor<R,P>visitExecutable in class SimpleElementVisitor6<R,P>e - the element to visitp - a visitor-specified parameter
public R visitExecutableAsConstructor(ExecutableElement e, P p)
CONSTRUCTOR executable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitExecutableAsInstanceInit(ExecutableElement e, P p)
INSTANCE_INIT executable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitExecutableAsMethod(ExecutableElement e, P p)
METHOD executable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitExecutableAsStaticInit(ExecutableElement e, P p)
STATIC_INIT executable element by calling
defaultAction.
e - the element to visitp - a visitor-specified parameter
defaultActionpublic R visitTypeParameter(TypeParameterElement e, P p)
defaultAction.
The element argument has kind TYPE_PARAMETER.
visitTypeParameter in interface ElementVisitor<R,P>visitTypeParameter in class SimpleElementVisitor6<R,P>e - the element to visitp - a visitor-specified parameter
defaultAction