Interface MultiMatcher<T extends com.sun.source.tree.Tree,N extends com.sun.source.tree.Tree>

Type Parameters:
T - the type of the node to match on
N - the type of the subnode that the given matcher should match
All Superinterfaces:
Matcher<T>, Serializable
All Known Implementing Classes:
AnnotationMatcher, ChildMultiMatcher, ConstructorOfClass, HasArguments, MethodHasParameters

public interface MultiMatcher<T extends com.sun.source.tree.Tree,N extends com.sun.source.tree.Tree> extends Matcher<T>
An matcher that applies a single matcher across multiple tree nodes.
Author:
eaftan@google.com (Eddie Aftandilian)