public interface MethodRemover
Facets.| Modifier and Type | Method and Description |
|---|---|
void |
removeMethod(Method method) |
void |
removeMethod(MethodScope methodScope,
String methodName,
Class<?> returnType,
Class<?>[] parameterTypes)
Locate all methods (that the implementation should somehow know about)
that match the criteria and remove them from the implementation's list so
that they are not considered for subsequent scans.
|
void |
removeMethods(List<Method> methods) |
List<Method> |
removeMethods(MethodScope methodScope,
String prefix,
Class<?> returnType,
boolean canBeVoid,
int paramCount)
Locate all methods (that the implementation should somehow know about)
that match the criteria and remove them from the implementation's list so
that they are not considered for subsequent scans.
|
List<Method> removeMethods(MethodScope methodScope, String prefix, Class<?> returnType, boolean canBeVoid, int paramCount)
methodScope - - whether looking for static (class) or
instance-level methods.void removeMethod(MethodScope methodScope, String methodName, Class<?> returnType, Class<?>[] parameterTypes)
forClass - - if true, then looking for static methods
(otherwise instance methods).void removeMethod(Method method)
void removeMethods(List<Method> methods)
Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.