DatagramChannel.java, [...]: New dummy files to make java.net fully JDK 1.4 compatible
2002-09-13 Michael Koch <konqueror@gmx.de> * java/nio/channels/DatagramChannel.java, java/nio/channels/ServerSocketChannel.java java/nio/channels/SocketChannel.java: New dummy files to make java.net fully JDK 1.4 compatible * Makefile.am (ordinary_java_source_files): Added java/net/DatagramSocketImplFactory.java (long forgotten), java/nio/SocketChannel.java, java/nio/ServerSocketChannel.java, java/nio/DatagramChannel.java * Makefile.in: Regenrated. From-SVN: r57101
This commit is contained in:
parent
a1edfd70e8
commit
8764acde96
6 changed files with 158 additions and 6 deletions
|
@ -1,6 +1,19 @@
|
|||
2002-09-13 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/nio/channels/DatagramChannel.java,
|
||||
java/nio/channels/ServerSocketChannel.java
|
||||
java/nio/channels/SocketChannel.java:
|
||||
New dummy files to make java.net fully JDK 1.4 compatible
|
||||
* Makefile.am (ordinary_java_source_files): Added
|
||||
java/net/DatagramSocketImplFactory.java (long forgotten),
|
||||
java/nio/SocketChannel.java,
|
||||
java/nio/ServerSocketChannel.java,
|
||||
java/nio/DatagramChannel.java
|
||||
* Makefile.in: Regenrated.
|
||||
|
||||
2002-09-12 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/net/DatagramSocketImpl.jav
|
||||
* java/net/DatagramSocketImpl.java
|
||||
(peekData): New method.
|
||||
* java/net/PlainDatagramSocketImpl.java
|
||||
(peekData): New method.
|
||||
|
|
|
@ -1885,6 +1885,7 @@ java/net/ContentHandlerFactory.java \
|
|||
java/net/DatagramPacket.java \
|
||||
java/net/DatagramSocket.java \
|
||||
java/net/DatagramSocketImpl.java \
|
||||
java/net/DatagramSocketImplFactory.java \
|
||||
java/net/FileNameMap.java \
|
||||
java/net/HttpURLConnection.java \
|
||||
java/net/InetAddress.java \
|
||||
|
@ -1918,6 +1919,9 @@ java/net/URLStreamHandler.java \
|
|||
java/net/URLStreamHandlerFactory.java \
|
||||
java/net/UnknownHostException.java \
|
||||
java/net/UnknownServiceException.java \
|
||||
java/nio/channels/DatagramChannel.java \
|
||||
java/nio/channels/ServerSocketChannel.java \
|
||||
java/nio/channels/SocketChannel.java \
|
||||
java/security/AccessControlContext.java \
|
||||
java/security/AccessControlException.java \
|
||||
java/security/AccessController.java \
|
||||
|
|
|
@ -1647,6 +1647,7 @@ java/net/ContentHandlerFactory.java \
|
|||
java/net/DatagramPacket.java \
|
||||
java/net/DatagramSocket.java \
|
||||
java/net/DatagramSocketImpl.java \
|
||||
java/net/DatagramSocketImplFactory.java \
|
||||
java/net/FileNameMap.java \
|
||||
java/net/HttpURLConnection.java \
|
||||
java/net/InetAddress.java \
|
||||
|
@ -1680,6 +1681,9 @@ java/net/URLStreamHandler.java \
|
|||
java/net/URLStreamHandlerFactory.java \
|
||||
java/net/UnknownHostException.java \
|
||||
java/net/UnknownServiceException.java \
|
||||
java/nio/channels/DatagramChannel.java \
|
||||
java/nio/channels/ServerSocketChannel.java \
|
||||
java/nio/channels/SocketChannel.java \
|
||||
java/security/AccessControlContext.java \
|
||||
java/security/AccessControlException.java \
|
||||
java/security/AccessController.java \
|
||||
|
@ -2865,9 +2869,9 @@ DEP_FILES = .deps/$(srcdir)/$(CONVERT_DIR)/gen-from-JIS.P \
|
|||
.deps/java/net/ConnectException.P .deps/java/net/ContentHandler.P \
|
||||
.deps/java/net/ContentHandlerFactory.P .deps/java/net/DatagramPacket.P \
|
||||
.deps/java/net/DatagramSocket.P .deps/java/net/DatagramSocketImpl.P \
|
||||
.deps/java/net/FileNameMap.P .deps/java/net/HttpURLConnection.P \
|
||||
.deps/java/net/InetAddress.P .deps/java/net/InetSocketAddress.P \
|
||||
.deps/java/net/JarURLConnection.P \
|
||||
.deps/java/net/DatagramSocketImplFactory.P .deps/java/net/FileNameMap.P \
|
||||
.deps/java/net/HttpURLConnection.P .deps/java/net/InetAddress.P \
|
||||
.deps/java/net/InetSocketAddress.P .deps/java/net/JarURLConnection.P \
|
||||
.deps/java/net/MalformedURLException.P .deps/java/net/MulticastSocket.P \
|
||||
.deps/java/net/NetPermission.P .deps/java/net/NoRouteToHostException.P \
|
||||
.deps/java/net/PasswordAuthentication.P \
|
||||
|
@ -2889,8 +2893,11 @@ DEP_FILES = .deps/$(srcdir)/$(CONVERT_DIR)/gen-from-JIS.P \
|
|||
.deps/java/net/UnknownServiceException.P \
|
||||
.deps/java/net/natInetAddress.P \
|
||||
.deps/java/net/natPlainDatagramSocketImpl.P \
|
||||
.deps/java/net/natPlainSocketImpl.P .deps/java/rmi/AccessException.P \
|
||||
.deps/java/rmi/AlreadyBoundException.P \
|
||||
.deps/java/net/natPlainSocketImpl.P \
|
||||
.deps/java/nio/channels/DatagramChannel.P \
|
||||
.deps/java/nio/channels/ServerSocketChannel.P \
|
||||
.deps/java/nio/channels/SocketChannel.P \
|
||||
.deps/java/rmi/AccessException.P .deps/java/rmi/AlreadyBoundException.P \
|
||||
.deps/java/rmi/ConnectException.P .deps/java/rmi/ConnectIOException.P \
|
||||
.deps/java/rmi/MarshalException.P .deps/java/rmi/MarshalledObject.P \
|
||||
.deps/java/rmi/Naming.P .deps/java/rmi/NoSuchObjectException.P \
|
||||
|
|
44
libjava/java/nio/channels/DatagramChannel.java
Normal file
44
libjava/java/nio/channels/DatagramChannel.java
Normal file
|
@ -0,0 +1,44 @@
|
|||
/* DatagramChannel.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
GNU Classpath is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
GNU Classpath is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with GNU Classpath; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA.
|
||||
|
||||
Linking this library statically or dynamically with other modules is
|
||||
making a combined work based on this library. Thus, the terms and
|
||||
conditions of the GNU General Public License cover the whole
|
||||
combination.
|
||||
|
||||
As a special exception, the copyright holders of this library give you
|
||||
permission to link this library with independent modules to produce an
|
||||
executable, regardless of the license terms of these independent
|
||||
modules, and to copy and distribute the resulting executable under
|
||||
terms of your choice, provided that you also meet, for each linked
|
||||
independent module, the terms and conditions of the license of that
|
||||
module. An independent module is a module which is not derived from
|
||||
or based on this library. If you modify this library, you may extend
|
||||
this exception to your version of the library, but you are not
|
||||
obligated to do so. If you do not wish to do so, delete this
|
||||
exception statement from your version. */
|
||||
|
||||
package java.nio.channels;
|
||||
|
||||
public class DatagramChannel
|
||||
{
|
||||
}
|
||||
|
||||
|
42
libjava/java/nio/channels/ServerSocketChannel.java
Normal file
42
libjava/java/nio/channels/ServerSocketChannel.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* ServerSocketChannel.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
GNU Classpath is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
GNU Classpath is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with GNU Classpath; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA.
|
||||
|
||||
Linking this library statically or dynamically with other modules is
|
||||
making a combined work based on this library. Thus, the terms and
|
||||
conditions of the GNU General Public License cover the whole
|
||||
combination.
|
||||
|
||||
As a special exception, the copyright holders of this library give you
|
||||
permission to link this library with independent modules to produce an
|
||||
executable, regardless of the license terms of these independent
|
||||
modules, and to copy and distribute the resulting executable under
|
||||
terms of your choice, provided that you also meet, for each linked
|
||||
independent module, the terms and conditions of the license of that
|
||||
module. An independent module is a module which is not derived from
|
||||
or based on this library. If you modify this library, you may extend
|
||||
this exception to your version of the library, but you are not
|
||||
obligated to do so. If you do not wish to do so, delete this
|
||||
exception statement from your version. */
|
||||
|
||||
package java.nio.channels;
|
||||
|
||||
public class ServerSocketChannel
|
||||
{
|
||||
}
|
42
libjava/java/nio/channels/SocketChannel.java
Normal file
42
libjava/java/nio/channels/SocketChannel.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* SocketChannel.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
GNU Classpath is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
GNU Classpath is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with GNU Classpath; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
02111-1307 USA.
|
||||
|
||||
Linking this library statically or dynamically with other modules is
|
||||
making a combined work based on this library. Thus, the terms and
|
||||
conditions of the GNU General Public License cover the whole
|
||||
combination.
|
||||
|
||||
As a special exception, the copyright holders of this library give you
|
||||
permission to link this library with independent modules to produce an
|
||||
executable, regardless of the license terms of these independent
|
||||
modules, and to copy and distribute the resulting executable under
|
||||
terms of your choice, provided that you also meet, for each linked
|
||||
independent module, the terms and conditions of the license of that
|
||||
module. An independent module is a module which is not derived from
|
||||
or based on this library. If you modify this library, you may extend
|
||||
this exception to your version of the library, but you are not
|
||||
obligated to do so. If you do not wish to do so, delete this
|
||||
exception statement from your version. */
|
||||
|
||||
package java.nio.channels;
|
||||
|
||||
public class SocketChannel
|
||||
{
|
||||
}
|
Loading…
Add table
Reference in a new issue