Matcher used to filter todo items, based on some criteria.
| 18 | * Matcher used to filter todo items, based on some criteria. |
| 19 | */ |
| 20 | public interface Matcher { |
| 21 | /** |
| 22 | * Determines whether the given todo item meets the criteria of this matcher. |
| 23 | */ |
| 24 | boolean matches(ToDoItem item); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * A matcher that matches any todo item. |
no outgoing calls
no test coverage detected