/[classpath]/classpath/java/nio/Buffer.java
ViewVC logotype

Diff of /classpath/java/nio/Buffer.java

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

revision 1.7 by mkoch, Mon May 19 08:36:27 2003 UTC revision 1.8 by mkoch, Tue Jun 24 11:22:53 2003 UTC
# Line 35  this exception to your version of the li Line 35  this exception to your version of the li
35  obligated to do so.  If you do not wish to do so, delete this  obligated to do so.  If you do not wish to do so, delete this
36  exception statement from your version. */  exception statement from your version. */
37    
38    
39  package java.nio;  package java.nio;
40    
41  public abstract class Buffer  public abstract class Buffer
42  {  {
43    private int cap = 0;    int cap = 0;
44    private int limit = 0;    int limit = 0;
45    private int pos = 0;    int pos = 0;
46    protected int mark = -1;    int mark = -1;
47    
48    // Creates a new Buffer.    // Creates a new Buffer.
49    //    //

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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