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:
@@ -46,11 +46,20 @@ class CharViewBufferImpl extends CharBuffer
|
||||
private boolean readOnly;
|
||||
private ByteOrder endian;
|
||||
|
||||
CharViewBufferImpl (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 CharViewBufferImpl (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