setter for isInteractive
This commit is contained in:
parent
4612d3d5bc
commit
4c34af094a
|
@ -53,6 +53,10 @@ public class Shell extends ShellBase {
|
|||
return this.isInteractive;
|
||||
}
|
||||
|
||||
public void setInteractive(boolean value) {
|
||||
this.isInteractive = value;
|
||||
}
|
||||
|
||||
public void registerCommands() throws ShellCommandInitException {
|
||||
registerCommandHandler("df", new Df(this));
|
||||
registerCommandHandler("iostat", new Iostat(this));
|
||||
|
|
Loading…
Reference in New Issue