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

Diff of /classpath/java/nio/LongBuffer.java

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

revision 1.18 by smarothy, Fri Sep 17 14:16:52 2004 UTC revision 1.19 by mkoch, Fri Oct 22 17:15:56 2004 UTC
# Line 68  public abstract class LongBuffer extends Line 68  public abstract class LongBuffer extends
68     * @exception IndexOutOfBoundsException If the preconditions on the offset     * @exception IndexOutOfBoundsException If the preconditions on the offset
69     * and length parameters do not hold     * and length parameters do not hold
70     */     */
71    final public static LongBuffer wrap (long[] array, int offset, int length)    public static final LongBuffer wrap (long[] array, int offset, int length)
72    {    {
73      return new LongBufferImpl (array, 0, array.length, offset + length, offset, -1, false);      return new LongBufferImpl (array, 0, array.length, offset + length, offset, -1, false);
74    }    }
# Line 77  public abstract class LongBuffer extends Line 77  public abstract class LongBuffer extends
77     * Wraps a <code>long</code> array into a <code>LongBuffer</code>     * Wraps a <code>long</code> array into a <code>LongBuffer</code>
78     * object.     * object.
79     */     */
80    final public static LongBuffer wrap (long[] array)    public static final LongBuffer wrap (long[] array)
81    {    {
82      return wrap (array, 0, array.length);      return wrap (array, 0, array.length);
83    }    }

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

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