home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / lang / Appendable.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  305 b   |  12 lines

  1. package java.lang;
  2.  
  3. import java.io.IOException;
  4.  
  5. public interface Appendable {
  6.    Appendable append(CharSequence var1) throws IOException;
  7.  
  8.    Appendable append(CharSequence var1, int var2, int var3) throws IOException;
  9.  
  10.    Appendable append(char var1) throws IOException;
  11. }
  12.