Interface for a class that knows how to match a Node for a specific pattern. For example of Matchers, see Matchers.
| 23 | * pattern. For example of Matchers, see {@link Matchers}. |
| 24 | */ |
| 25 | public interface Matcher { |
| 26 | /** |
| 27 | * Returns true if the specified {@link Node} and {@link NodeMetadata} match |
| 28 | * the given pattern. |
| 29 | */ |
| 30 | boolean matches(Node n, NodeMetadata metadata); |
| 31 | } |
no outgoing calls
no test coverage detected