< prev index next >

jdk/src/java.base/share/classes/java/nio/MappedByteBuffer.java

Print this page

        

*** 211,281 **** // -- Covariant return type overrides /** * {@inheritDoc} ! * @since 1.9 */ @Override public final MappedByteBuffer position(int newPosition) { super.position(newPosition); return this; } /** * {@inheritDoc} ! * @since 1.9 */ @Override public final MappedByteBuffer limit(int newLimit) { super.limit(newLimit); return this; } /** * {@inheritDoc} ! * @since 1.9 */ @Override public final MappedByteBuffer mark() { super.mark(); return this; } /** * {@inheritDoc} ! * @since 1.9 */ @Override public final MappedByteBuffer reset() { super.reset(); return this; } /** * {@inheritDoc} ! * @since 1.9 */ @Override public final MappedByteBuffer clear() { super.clear(); return this; } /** * {@inheritDoc} ! * @since 1.9 */ @Override public final MappedByteBuffer flip() { super.flip(); return this; } /** * {@inheritDoc} ! * @since 1.9 */ @Override public final MappedByteBuffer rewind() { super.rewind(); return this; --- 211,281 ---- // -- Covariant return type overrides /** * {@inheritDoc} ! * @since 9 */ @Override public final MappedByteBuffer position(int newPosition) { super.position(newPosition); return this; } /** * {@inheritDoc} ! * @since 9 */ @Override public final MappedByteBuffer limit(int newLimit) { super.limit(newLimit); return this; } /** * {@inheritDoc} ! * @since 9 */ @Override public final MappedByteBuffer mark() { super.mark(); return this; } /** * {@inheritDoc} ! * @since 9 */ @Override public final MappedByteBuffer reset() { super.reset(); return this; } /** * {@inheritDoc} ! * @since 9 */ @Override public final MappedByteBuffer clear() { super.clear(); return this; } /** * {@inheritDoc} ! * @since 9 */ @Override public final MappedByteBuffer flip() { super.flip(); return this; } /** * {@inheritDoc} ! * @since 9 */ @Override public final MappedByteBuffer rewind() { super.rewind(); return this;
< prev index next >