/[classpath]/classpath/java/lang/Appendable.java
ViewVC logotype

Diff of /classpath/java/lang/Appendable.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.2 by gnu_andrew, Sun Sep 26 23:02:09 2004 UTC revision 1.1.2.3 by tromey, Mon Nov 1 15:57:08 2004 UTC
# Line 37  exception statement from your version. * Line 37  exception statement from your version. *
37    
38  package java.lang;  package java.lang;
39    
40    import java.io.IOException;
41    
42  /**  /**
43   * <p>   * <p>
44   * An <code>Appendable</code> object is one to which a sequence of Unicode   * An <code>Appendable</code> object is one to which a sequence of Unicode
# Line 71  public interface Appendable Line 73  public interface Appendable
73     * @return a reference to this object.     * @return a reference to this object.
74     * @throws IOException if an I/O error occurs.     * @throws IOException if an I/O error occurs.
75     */     */
76    Appendable append(char c);    Appendable append(char c) throws IOException;
77    
78    /**    /**
79     * Appends the specified sequence of Unicode characters to this     * Appends the specified sequence of Unicode characters to this
# Line 86  public interface Appendable Line 88  public interface Appendable
88     * @return a reference to this object.     * @return a reference to this object.
89     * @throws IOException if an I/O error occurs.     * @throws IOException if an I/O error occurs.
90     */     */
91    Appendable append(CharSequence seq);    Appendable append(CharSequence seq) throws IOException;
92    
93    /**    /**
94     * Appends the specified subsequence of Unicode characters to this     * Appends the specified subsequence of Unicode characters to this
# Line 111  public interface Appendable Line 113  public interface Appendable
113     *         the start index occurs after the end index, or the end index is     *         the start index occurs after the end index, or the end index is
114     *         beyond the end of the sequence.     *         beyond the end of the sequence.
115     */     */
116    Appendable append(CharSequence seq, int start, int end);    Appendable append(CharSequence seq, int start, int end) throws IOException;
   
117  }  }

Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26