TodoHandler defines a tab that is capable of advising the user of which field should be used to action a todo. This may be by highlighting the field, or changing focus to the field.
| 26 | */ |
| 27 | |
| 28 | @FunctionalInterface |
| 29 | @SuppressWarnings("TodoComment") |
| 30 | public interface TodoHandler |
| 31 | { |
| 32 | |
| 33 | /** |
| 34 | * Advise the user of where to action a todo item. |
| 35 | * @param fieldName The field to be actioned. |
| 36 | */ |
| 37 | public void adviseTodo(String fieldName); |
| 38 | } |
no outgoing calls
no test coverage detected