2002-11-20 Michael Koch <konqueror@gmx.de>
* java/io/FileInputStream.java (getChannel): New method. * java/io/FileOutputStream.java (getChannel): New method. * java/net/ServerSocket.java (bind): Removed duplicate code and called another bind method instead. * java/nio/channels/SelectionKey.java (isValid): Removed wrong exception documentation. * java/nio/channels/ServerSocketChannel.java (accept): Added exception documentation. (open): Fixed typo, added exception documentation. * java/nio/channels/spi/AbstractSelectableChannel.java (implCloseChannel): Added exception documentation. (add): Reformated. (register): Added exception documentation. From-SVN: r59307
This commit is contained in:
committed by
Michael Koch
parent
e6226a2f87
commit
3ebb998e6f
@@ -60,7 +60,18 @@ public abstract class ServerSocketChannel
|
||||
}
|
||||
|
||||
/**
|
||||
* Accepts a connection made to this channel's socket.
|
||||
* Accepts a connection made to this channel's socket.
|
||||
*
|
||||
* @exception IOException If an error occurs
|
||||
* @exception AsynchronousCloseException If another thread closes this
|
||||
* channel while the accept operation is in progress.
|
||||
* @exception ClosedByInterruptException If another thread interrupts the
|
||||
* current thread while the accept operation is in progress, thereby closing
|
||||
* the channel and setting the current thread's interrupt status.
|
||||
* @exception ClosedChannelException If the channel is closed.
|
||||
* @exception NotYetBoundException If the channel's socket is not yet bound.
|
||||
* @exception SecurityException If a security manager has been installed and
|
||||
* it does not permit access to the remote endpoint of the new connection.
|
||||
*/
|
||||
public abstract SocketChannel accept ();
|
||||
|
||||
@@ -70,7 +81,9 @@ public abstract class ServerSocketChannel
|
||||
public abstract ServerSocket socket ();
|
||||
|
||||
/**
|
||||
* Opens a server socker channel.
|
||||
* Opens a server socket channel.
|
||||
*
|
||||
* @exception IOException If an error occurs
|
||||
*/
|
||||
public static ServerSocketChannel open () throws IOException
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user