CharViewBufferImpl.java: New convenience constructor.
* java/nio/CharViewBufferImpl.java: New convenience constructor. Fix buggy call to super constructor. * java/nio/DoubleViewBufferImpl.java: Likewise. * java/nio/FloatViewBufferImpl.java: Likewise. * java/nio/IntViewBufferImpl.java: Likewise. * java/nio/LongViewBufferImpl.java: Likewise. * java/nio/ShortViewBufferImpl.java: Likewise. From-SVN: r77917
This commit is contained in:
@@ -45,12 +45,21 @@ class ShortViewBufferImpl extends ShortBuffer
|
||||
private ByteBuffer bb;
|
||||
private boolean readOnly;
|
||||
private ByteOrder endian;
|
||||
|
||||
ShortViewBufferImpl (ByteBuffer bb, int capacity)
|
||||
{
|
||||
super (capacity, capacity, 0, -1);
|
||||
this.bb = bb;
|
||||
this.offset = bb.position();
|
||||
this.readOnly = bb.isReadOnly();
|
||||
this.endian = bb.order();
|
||||
}
|
||||
|
||||
public ShortViewBufferImpl (ByteBuffer bb, int offset, int capacity,
|
||||
int limit, int position, int mark,
|
||||
boolean readOnly, ByteOrder endian)
|
||||
{
|
||||
super (limit >> 1, limit >> 1, position >> 1, mark >> 1);
|
||||
super (capacity, limit, position, mark);
|
||||
this.bb = bb;
|
||||
this.offset = offset;
|
||||
this.readOnly = readOnly;
|
||||
|
||||
Reference in New Issue
Block a user