|
Préférences
Moteurs de recherche
|
||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.lang.model.element
|
Method Summary | |
---|---|
R |
visit(Element e)
A convenience method equivalent to v.visit(e, null) . |
R |
visit(Element e,
P p)
Visits an element. |
R |
visitExecutable(ExecutableElement e,
P p)
Visits an executable element. |
R |
visitPackage(PackageElement e,
P p)
Visits a package element. |
R |
visitType(TypeElement e,
P p)
Visits a type element. |
R |
visitTypeParameter(TypeParameterElement e,
P p)
Visits a type parameter element. |
R |
visitUnknown(Element e,
P p)
Visits an unknown kind of element. |
R |
visitVariable(VariableElement e,
P p)
Visits a variable element. |
Method Detail |
---|
R visit(Element e, P p)
e
- the element to visitp
- a visitor-specified parameter
R visit(Element e)
v.visit(e, null)
.
e
- the element to visit
R visitPackage(PackageElement e, P p)
e
- the element to visitp
- a visitor-specified parameter
R visitType(TypeElement e, P p)
e
- the element to visitp
- a visitor-specified parameter
R visitVariable(VariableElement e, P p)
e
- the element to visitp
- a visitor-specified parameter
R visitExecutable(ExecutableElement e, P p)
e
- the element to visitp
- a visitor-specified parameter
R visitTypeParameter(TypeParameterElement e, P p)
e
- the element to visitp
- a visitor-specified parameter
R visitUnknown(Element e, P p)
Element
hierarchy.
e
- the element to visitp
- a visitor-specified parameter
UnknownElementException
- a visitor implementation may optionally throw this exception