public Appendable append(CharSequence sequence) { this.println(RemoteOutput.asString(sequence)); return this; }
public Appendable append(CharSequence sequence, int start, int end) { this.print(RemoteOutput.asString(sequence).substring(start, end)); return this; }
public RemoteClient(RmiLocation serverLocation) throws ShellException { this(serverLocation, RemoteOutput.newOutput()); }