setter for isInteractive

This commit is contained in:
Doug MacEachern 2005-02-25 01:30:45 +00:00
parent 4612d3d5bc
commit 4c34af094a
1 changed files with 4 additions and 0 deletions

View File

@ -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));