@@ -34,10 +34,12 @@ public interface ProofScriptCommand {
3434 /// @throws ScriptException if something bad happens
3535 /// @throws InterruptedException if something bad happens
3636 // TODO downgrade AbstractUserInterfaceControl to UserInterfaceControl
37- void execute (AbstractUserInterfaceControl uiControl , ScriptCommandAst args , EngineState stateMap )
37+ void execute (AbstractUserInterfaceControl uiControl , ScriptCommandAst args ,
38+ EngineState stateMap )
3839 throws ScriptException , InterruptedException ;
3940
40- /// Returns the name of this proof command. The name should be constant and not be clash with the
41+ /// Returns the name of this proof command. The name should be constant and not be clash with
42+ /// the
4143 /// name of other commands. The name is essential for finding this command within an hashmap.
4244 ///
4345 /// @return a non-null, non-empty string
@@ -51,7 +53,8 @@ void execute(AbstractUserInterfaceControl uiControl, ScriptCommandAst args, Engi
5153 /// inside [ScriptCommandAst]. For example [LetCommand] announce `letf` as an
5254 /// alias for an overwriting binding, otherwise error are thrown on re-binding.
5355 ///
54- /// @return an unmodifiable list of alias names under which command can be called, including [#getName()]
56+ /// @return an unmodifiable list of alias names under which command can be called, including
57+ /// [#getName()]
5558 default List <String > getAliases () {
5659 return List .of (getName ());
5760 }
0 commit comments