コード例 #1
0
 public Appendable append(CharSequence csq, int start, int end) throws IOException {
   return source.append(csq, start, end);
 }
コード例 #2
0
 public Appendable append(CharSequence csq) throws IOException {
   return source.append(csq);
 }
コード例 #3
0
 public Appendable append(char c) throws IOException {
   return source.append(c);
 }