Class PublicMethodVisitor<R,P>
java.lang.Object
javax.lang.model.util.AbstractTypeVisitor6<R,P>
javax.lang.model.util.AbstractTypeVisitor7<R,P>
javax.lang.model.util.AbstractTypeVisitor8<R,P>
io.micronaut.annotation.processing.SuperclassAwareTypeVisitor<R,P>
io.micronaut.annotation.processing.PublicMethodVisitor<R,P>
- Type Parameters:
R- The return type of the visitor's methodP- The type of the additional parameter to the visitor's methods.
- All Implemented Interfaces:
TypeVisitor<R,P>
- Direct Known Subclasses:
PublicAbstractMethodVisitor
@Deprecated(forRemoval=true)
public abstract class PublicMethodVisitor<R,P>
extends SuperclassAwareTypeVisitor<R,P>
Deprecated, for removal: This API element is subject to removal in a future version.
No longer used
An adapter that implements all methods of the
TypeVisitor
interface subclasses can selectively override.- Since:
- 1.0
- Author:
- graemerocher
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedPublicMethodVisitor(JavaVisitorContext visitorContext) Deprecated, for removal: This API element is subject to removal in a future version.Default constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanisAcceptable(Element element) Deprecated, for removal: This API element is subject to removal in a future version.Only accepts public non file or static methods.Methods inherited from class SuperclassAwareTypeVisitor
accept, visitArray, visitDeclared, visitError, visitExecutable, visitIntersection, visitNoType, visitNull, visitPrimitive, visitTypeVariable, visitUnion, visitWildcardMethods inherited from class AbstractTypeVisitor6
visit, visit, visitUnknown
-
Constructor Details
-
PublicMethodVisitor
Deprecated, for removal: This API element is subject to removal in a future version.Default constructor.- Parameters:
visitorContext- The visitor context
-
-
Method Details
-
isAcceptable
Deprecated, for removal: This API element is subject to removal in a future version.Only accepts public non file or static methods.- Specified by:
isAcceptablein classSuperclassAwareTypeVisitor<R,P> - Parameters:
element- TheElement- Returns:
- If the element is acceptable
-