Command handler objects are instantiated with specific arguments to execute commands.
| 71 | * execute commands. |
| 72 | */ |
| 73 | public interface Handler { |
| 74 | void run( |
| 75 | Optional<InteractiveShell> shell, |
| 76 | PrintWriter writer, |
| 77 | MetadataShellState state |
| 78 | ) throws Exception; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * An object which describes a type of command handler. This includes |
no outgoing calls
no test coverage detected
searching dependent graphs…