mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-27 00:11:21 +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:
parent
7fc600fc4c
commit
1226b900dc
@ -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>
|
2003-06-27 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
* javax/naming/CompositeName.java
|
* javax/naming/CompositeName.java
|
||||||
|
@ -41,7 +41,7 @@ package java.nio;
|
|||||||
/**
|
/**
|
||||||
* This is a Heap memory implementation
|
* This is a Heap memory implementation
|
||||||
*/
|
*/
|
||||||
public final class ByteBufferImpl extends ByteBuffer
|
final class ByteBufferImpl extends ByteBuffer
|
||||||
{
|
{
|
||||||
private boolean readOnly;
|
private boolean readOnly;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ package java.nio;
|
|||||||
/**
|
/**
|
||||||
* This is a Heap memory implementation
|
* This is a Heap memory implementation
|
||||||
*/
|
*/
|
||||||
public final class CharBufferImpl extends CharBuffer
|
final class CharBufferImpl extends CharBuffer
|
||||||
{
|
{
|
||||||
private boolean readOnly;
|
private boolean readOnly;
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ package java.nio;
|
|||||||
|
|
||||||
import gnu.gcj.RawData;
|
import gnu.gcj.RawData;
|
||||||
|
|
||||||
public class DirectByteBufferImpl extends ByteBuffer
|
class DirectByteBufferImpl extends ByteBuffer
|
||||||
{
|
{
|
||||||
RawData address;
|
RawData address;
|
||||||
private int offset;
|
private int offset;
|
||||||
|
@ -41,7 +41,7 @@ package java.nio;
|
|||||||
/**
|
/**
|
||||||
* This is a Heap memory implementation
|
* This is a Heap memory implementation
|
||||||
*/
|
*/
|
||||||
public final class DoubleBufferImpl extends DoubleBuffer
|
final class DoubleBufferImpl extends DoubleBuffer
|
||||||
{
|
{
|
||||||
private boolean readOnly;
|
private boolean readOnly;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ package java.nio;
|
|||||||
/**
|
/**
|
||||||
* This is a Heap memory implementation
|
* This is a Heap memory implementation
|
||||||
*/
|
*/
|
||||||
public final class FloatBufferImpl extends FloatBuffer
|
final class FloatBufferImpl extends FloatBuffer
|
||||||
{
|
{
|
||||||
private boolean readOnly;
|
private boolean readOnly;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ package java.nio;
|
|||||||
/**
|
/**
|
||||||
* This is a Heap memory implementation
|
* This is a Heap memory implementation
|
||||||
*/
|
*/
|
||||||
public final class IntBufferImpl extends IntBuffer
|
final class IntBufferImpl extends IntBuffer
|
||||||
{
|
{
|
||||||
private boolean readOnly;
|
private boolean readOnly;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ package java.nio;
|
|||||||
/**
|
/**
|
||||||
* This is a Heap memory implementation
|
* This is a Heap memory implementation
|
||||||
*/
|
*/
|
||||||
public final class LongBufferImpl extends LongBuffer
|
final class LongBufferImpl extends LongBuffer
|
||||||
{
|
{
|
||||||
private boolean readOnly;
|
private boolean readOnly;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ package java.nio;
|
|||||||
/**
|
/**
|
||||||
* This is a Heap memory implementation
|
* This is a Heap memory implementation
|
||||||
*/
|
*/
|
||||||
public final class ShortBufferImpl extends ShortBuffer
|
final class ShortBufferImpl extends ShortBuffer
|
||||||
{
|
{
|
||||||
private boolean readOnly;
|
private boolean readOnly;
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ public abstract class FileChannel extends AbstractInterruptibleChannel
|
|||||||
*
|
*
|
||||||
* @exception IOException If an I/O error occurs.
|
* @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;
|
long result = 0;
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ public abstract class ServerSocketChannel
|
|||||||
/**
|
/**
|
||||||
* Initializes this channel.
|
* Initializes this channel.
|
||||||
*/
|
*/
|
||||||
public ServerSocketChannel (SelectorProvider provider)
|
protected ServerSocketChannel (SelectorProvider provider)
|
||||||
{
|
{
|
||||||
super (provider);
|
super (provider);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user