2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-25 07:40:29 +08:00

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
This commit is contained in:
Michael Koch 2003-06-27 13:34:12 +00:00 committed by Michael Koch
parent 7fc600fc4c
commit 1226b900dc
11 changed files with 33 additions and 10 deletions

@ -1,3 +1,26 @@
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

@ -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);
}