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

Diff of /classpath/java/nio/MappedByteBuffer.java

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

revision 1.3 by mark, Tue Apr 30 21:37:26 2002 UTC revision 1.4 by mkoch, Mon Nov 11 16:19:30 2002 UTC
# Line 42  public abstract class MappedByteBuffer e Line 42  public abstract class MappedByteBuffer e
42  {  {
43      private static native void sync();      private static native void sync();
44    
45      public MappedByteBuffer force()      public final MappedByteBuffer force()
46      {      {
47          sync();          sync();
48          return this;          return this;
49      }      }
50            
51      public boolean isLoaded()      public final boolean isLoaded()
52      {      {
53          return true;          return true;
54      }      }
55            
56      public MappedByteBuffer load()      public final MappedByteBuffer load()
57      {      {
58          sync();          sync();
59          return this;          return this;

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

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