/[classpath]/classpath/java/io/RandomAccessFile.java
ViewVC logotype

Diff of /classpath/java/io/RandomAccessFile.java

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

revision 1.7 by rao, Thu Mar 16 19:21:23 2000 UTC revision 1.8 by cbj, Fri Sep 21 04:22:07 2001 UTC
# Line 27  executable file might be covered by the Line 27  executable file might be covered by the
27    
28  package java.io;  package java.io;
29    
30    import gnu.classpath.Configuration;
31    
32  /**  /**
33    * This class allows reading and writing of files at random locations.    * This class allows reading and writing of files at random locations.
34    * Most Java I/O classes are either pure sequential input or output.  This    * Most Java I/O classes are either pure sequential input or output.  This
# Line 42  package java.io; Line 44  package java.io;
44  public class RandomAccessFile implements DataOutput, DataInput  public class RandomAccessFile implements DataOutput, DataInput
45  {  {
46    
47  static    static
48  {    {
49    System.loadLibrary("javaio");      if (Configuration.INIT_LOAD_LIBRARY)
50  }        {
51            System.loadLibrary ("javaio");
52          }
53      }
54    
55  /*************************************************************************/  /*************************************************************************/
56    

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