diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-25 11:40:19 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-25 11:40:19 +0000 |
commit | a25a41b522146ecf74b1694411c5cb8ee4c0062a (patch) | |
tree | 88ef0760e764ef489e276334b8e20f71e9f96390 /libjava/java/net/SocketOptions.java | |
parent | c0f9df171338117e37e4a45a4b5f1089c6ab3f48 (diff) | |
download | ppe42-gcc-a25a41b522146ecf74b1694411c5cb8ee4c0062a.tar.gz ppe42-gcc-a25a41b522146ecf74b1694411c5cb8ee4c0062a.zip |
2003-05-25 Michael Koch <konqueror@gmx.de>
* java/io/PushbackInputStream.java,
java/net/Authenticator.java,
java/net/ContentHandler.java,
java/net/ContentHandlerFactory.java,
java/net/DatagramSocket.java,
java/net/DatagramSocketImpl.java,
java/net/DatagramSocketImplFactory.java,
java/net/FileNameMap.java,
java/net/SocketImplFactory.java,
java/net/SocketOptions.java,
java/net/URLStreamHandlerFactory.java:
Merged new versions from classpath.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67165 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/net/SocketOptions.java')
-rw-r--r-- | libjava/java/net/SocketOptions.java | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/libjava/java/net/SocketOptions.java b/libjava/java/net/SocketOptions.java index f62afef9aab..b0404e8409c 100644 --- a/libjava/java/net/SocketOptions.java +++ b/libjava/java/net/SocketOptions.java @@ -1,5 +1,6 @@ /* SocketOptions.java -- Implements options for sockets (duh!) - Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001, + 2002, 2003 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -138,30 +139,30 @@ public interface SocketOptions * Sets the specified option on a socket to the passed in object. For * options that take an integer argument, the passed in object is an * <code>Integer</code>. For options that are set to on or off, the - * value passed will be a <code>Boolean</code>. The <code>option_id</code> + * value passed will be a <code>Boolean</code>. The <code>optionId</code> * parameter is one of the defined constants in this interface. * - * @param option_id The identifier of the option + * @param optionId The identifier of the option * @param val The value to set the option to * * @exception SocketException If an error occurs */ - void setOption(int option_id, Object val) throws SocketException; + void setOption(int optionId, Object val) throws SocketException; /** * Returns the current setting of the specified option. The * <code>Object</code> returned will be an <code>Integer</code> for options * that have integer values. For options that are set to on or off, a - * <code>Boolean</code> will be returned. The <code>option_id</code> - * is one of the defined constants in this interface. + * <code>Boolean</code> will be returned. The <code>optionId</code> + * parameter is one of the defined constants in this interface. * - * @param option_id The option identifier + * @param optionId The option identifier * * @return The current value of the option * * @exception SocketException If an error occurs */ - Object getOption(int option_id) throws SocketException; + Object getOption(int optionId) throws SocketException; } // interface SocketOptions |