コード例 #1
0
 public Appendable append(CharSequence csq) throws IOException {
   return source.append(csq);
 }
コード例 #2
0
 public Appendable append(CharSequence csq, int start, int end) throws IOException {
   return source.append(csq, start, end);
 }
コード例 #3
0
 public Appendable append(char c) throws IOException {
   return source.append(c);
 }
コード例 #4
0
 public void println(Serializable object) throws RemoteException {
   source.println(object);
 }
コード例 #5
0
 /**
  * Prints an object to the wrapped {@link Output}.
  *
  * @param object the object to print.
  * @throws RemoteException RMI error.
  */
 public void println(Object object) throws RemoteException {
   source.println(object.toString());
 }
コード例 #6
0
 public void println() throws RemoteException {
   source.println();
 }