Commit 1226b900 by Michael Koch Committed by Michael Koch

2003-06-27 Michael Koch <konqueror@gmx.de>

	* java/nio/ByteBufferImpl.java
	(ByteBufferImpl): Made it a package-private class
	* java/nio/CharBufferImpl.java
	(CharBufferImpl): Made it a package-private class
	* java/nio/DirectByteBufferImpl.java
	(DirectByteBufferImpl): Made it a package-private class
	* java/nio/DoubleBufferImpl.java
	(DoubleBufferImpl): Made it a package-private class
	* java/nio/FloatBufferImpl.java
	(FloatBufferImpl): Made it a package-private class
	* java/nio/IntBufferImpl.java
	(IntBufferImpl): Made it a package-private class
	* java/nio/LongBufferImpl.java
	(LongBufferImpl): Made it a package-private class
	* java/nio/ShortBufferImpl.java
	(ShortBufferImpl): Made it a package-private class
	* java/nio/channels/FileChannel.java
	(write): Made final.
	* java/nio/channels/ServerSocketChannel.java
	(ServerSocketChanne): Made protected.

From-SVN: r68571
parent 7fc600fc
2003-06-27 Michael Koch <konqueror@gmx.de>
* java/nio/ByteBufferImpl.java
(ByteBufferImpl): Made it a package-private class
* java/nio/CharBufferImpl.java
(CharBufferImpl): Made it a package-private class
* java/nio/DirectByteBufferImpl.java
(DirectByteBufferImpl): Made it a package-private class
* java/nio/DoubleBufferImpl.java
(DoubleBufferImpl): Made it a package-private class
* java/nio/FloatBufferImpl.java
(FloatBufferImpl): Made it a package-private class
* java/nio/IntBufferImpl.java
(IntBufferImpl): Made it a package-private class
* java/nio/LongBufferImpl.java
(LongBufferImpl): Made it a package-private class
* java/nio/ShortBufferImpl.java
(ShortBufferImpl): Made it a package-private class
* java/nio/channels/FileChannel.java
(write): Made final.
* java/nio/channels/ServerSocketChannel.java
(ServerSocketChanne): Made protected.
2003-06-27 Michael Koch <konqueror@gmx.de>
* javax/naming/CompositeName.java
(serialVersionUID): New member variable.
* javax/naming/CompoundName.java
......
......@@ -41,7 +41,7 @@ package java.nio;
/**
* This is a Heap memory implementation
*/
public final class ByteBufferImpl extends ByteBuffer
final class ByteBufferImpl extends ByteBuffer
{
private boolean readOnly;
......
......@@ -41,7 +41,7 @@ package java.nio;
/**
* This is a Heap memory implementation
*/
public final class CharBufferImpl extends CharBuffer
final class CharBufferImpl extends CharBuffer
{
private boolean readOnly;
......
......@@ -40,7 +40,7 @@ package java.nio;
import gnu.gcj.RawData;
public class DirectByteBufferImpl extends ByteBuffer
class DirectByteBufferImpl extends ByteBuffer
{
RawData address;
private int offset;
......
......@@ -41,7 +41,7 @@ package java.nio;
/**
* This is a Heap memory implementation
*/
public final class DoubleBufferImpl extends DoubleBuffer
final class DoubleBufferImpl extends DoubleBuffer
{
private boolean readOnly;
......
......@@ -41,7 +41,7 @@ package java.nio;
/**
* This is a Heap memory implementation
*/
public final class FloatBufferImpl extends FloatBuffer
final class FloatBufferImpl extends FloatBuffer
{
private boolean readOnly;
......
......@@ -41,7 +41,7 @@ package java.nio;
/**
* This is a Heap memory implementation
*/
public final class IntBufferImpl extends IntBuffer
final class IntBufferImpl extends IntBuffer
{
private boolean readOnly;
......
......@@ -41,7 +41,7 @@ package java.nio;
/**
* This is a Heap memory implementation
*/
public final class LongBufferImpl extends LongBuffer
final class LongBufferImpl extends LongBuffer
{
private boolean readOnly;
......
......@@ -41,7 +41,7 @@ package java.nio;
/**
* This is a Heap memory implementation
*/
public final class ShortBufferImpl extends ShortBuffer
final class ShortBufferImpl extends ShortBuffer
{
private boolean readOnly;
......
......@@ -112,7 +112,7 @@ public abstract class FileChannel extends AbstractInterruptibleChannel
*
* @exception IOException If an I/O error occurs.
*/
public long write (ByteBuffer[] srcs) throws IOException
public final long write (ByteBuffer[] srcs) throws IOException
{
long result = 0;
......
......@@ -53,7 +53,7 @@ public abstract class ServerSocketChannel
/**
* Initializes this channel.
*/
public ServerSocketChannel (SelectorProvider provider)
protected ServerSocketChannel (SelectorProvider provider)
{
super (provider);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment