summaryrefslogtreecommitdiffstats
path: root/libjava
Commit message (Collapse)AuthorAgeFilesLines
* 2003-12-02 Ito Kazumitsu <kaz@maczuka.gcd.org>mkoch2003-12-022-2/+8
| | | | | | | | | * java/text/SimpleDateFormat.java (compileFormat): isLowerCase() and isUpperCase() allow too many characters. Just use >= 'A' && <= 'Z' || >= 'a' && <= 'z'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74188 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Dalibor Topic <robilad@kaffe.org>mkoch2003-12-022-1/+5
| | | | | | | * java/text/FieldPosition.java (equals): Fixed comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74187 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Mark Wielaard <mark@klomp.org>mkoch2003-12-022-2/+8
| | | | | | | | | Reported by Archie Cobbs: * java/security/DigestInputStream.java (read(byte[], int, int): Call digest.update() with temp, not len as lenght. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74186 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-024-7/+24
| | | | | | | | | | | | * java/net/DatagramSocket.java (close): Close associated DatagramChannel object. * java/net/ServerSocket.java * java/net/Socket.java (close): Reset impl and bound before calling getChannel().close() to prevent from loops. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74183 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-022-4/+15
| | | | | | | | | | | * java/nio/channels/spi/AbstractInterruptibleChannel.java (opened): Removed. (closed): New field. (close): Check of channel is closed already. (isOpen): Return !closed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74182 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-026-5/+40
| | | | | | | | | | | | | | | | | | * gnu/java/nio/DatagramChannelImpl.java (blocking): Initialize with true by default. * gnu/java/nio/ServerSocketChannelImpl.java (serverSocket): Made private. (blocking): Likewise. (connected): Likewise. * gnu/java/nio/SocketChannelImpl.java (connectionPending): Made private. * gnu/java/nio/FileLockImpl.java (static): Load native library (needed for classpath). * gnu/java/nio/SelectorImpl.java (static): Load native library (needed for classpath). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74181 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-022-1/+46
| | | | | | | | | * gnu/java/net/protocol/file/Connection.java (getLastModified): Implement for file connections. (getContentLength): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74180 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-022-23/+29
| | | | | | | | | | * gnu/java/net/protocol/file/Connection.java: Some reformating. (file): Renamed from fileIn. (getPermission): Moved around. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74179 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-022-17/+23
| | | | | | | | | | * gnu/java/net/protocol/jar/Connection.java (Connection): Made class final, merged documentation with classpath. (file_cache): Made private. (jar_file): Renamed from jarfile. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74178 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-022-18/+48
| | | | | | | | | | | | * gnu/java/net/protocol/http/Connection.java (Connection): Initialize doOutput to false; (connect): Initialize inputStream, moved "send request" code to new method. (sendRequest): New method. (getHttpHeaders): Don't reinitialize inputStream. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74177 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-022-32/+39
| | | | | | | | | | | | | | | * gnu/java/net/protocol//http/Connection.java (defRequestProperties): Removed. This dont gets used since JDK 1.3. (requestProperties): Initialize, documentation added. (inputStream): Renamed from bufferedIn. (Connection): Dont initialize requestProperties. (setDefaultRequestProperty): Removed. (getDefaultRequestProperty): Removed. (usingProxy): Documentation added. (getHttpHeaders): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74176 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-02 Michael Koch <konqueror@gmx.de>mkoch2003-12-022-1/+11
| | | | | | | | * java/text/DateFormat.java: Explicitely import used classes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74174 138bc75d-0d04-0410-961f-82ee72b054a4
* * libjava.compile/PR13024.java: New file.jsturm2003-12-023-0/+29
| | | | | | | * libjava.compile/PR13237.java: New file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74157 138bc75d-0d04-0410-961f-82ee72b054a4
* * verify.cc (state::clean_subrs): Clear seen_subrs.jsturm2003-12-022-3/+9
| | | | | | | | (state::copy): Walk seen_subrs from copy, not `this'. Don't clear seen_subrs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74152 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Kim Ho <kho@redhat.com>tromey2003-12-022-2/+10
| | | | | | | | * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c (create): Disable wrapping if TextArea has horizontal scroll bars. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74141 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Thomas Fitzsimmons <fitzsim@redhat.com>fitzsim2003-12-012-16/+8
| | | | | | | | * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c (awt_event_handler): Hard-code inset values. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74136 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Thomas Fitzsimmons <fitzsim@redhat.com>fitzsim2003-12-013-35/+70
| | | | | | | | | | | | | | * gnu/java/awt/peer/gtk/GdkFontMetrics.java (GdkFontMetrics): Pass font name, not XLFD, to initState. (stringWidth(String, int, String)): New method. (stringWidth(String)): Call new stringWidth. (getLeading): Always return 0. * jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontMetrics.c (initState): New Pango implementation. (stringWidth): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74133 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Olga Rodimina <rodimina@redhat.com>tromey2003-12-013-2/+32
| | | | | | | | | | | | | * java/awt/TextComponent.java: (getSelectionStart): Updated javadocs. (getSelectionEnd): Ditto. * jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer: (getSelectionStart): Changed to return caret position if no text is selected (getSelectionEnd): Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74124 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Thomas Fitzsimmons <fitzsim@redhat.com>fitzsim2003-12-0119-1531/+12
| | | | | | | | | | | | | | | | | * gnu/awt/gtk/GtkButtonPeer.java, gnu/awt/gtk/gtkcommon.cc, gnu/awt/gtk/gtkcommon.h, gnu/awt/gtk/GtkComponentPeer.java, gnu/awt/gtk/GtkContainerPeer.java, gnu/awt/gtk/GtkFramePeer.java, gnu/awt/gtk/GtkLabelPeer.java, gnu/awt/gtk/GtkMainThread.java, gnu/awt/gtk/GtkToolkit.java, gnu/awt/gtk/GtkWindowPeer.java, gnu/awt/gtk/natGtkButtonPeer.cc, gnu/awt/gtk/natGtkComponentPeer.cc, gnu/awt/gtk/natGtkContainerPeer.cc, gnu/awt/gtk/natGtkFramePeer.cc, gnu/awt/gtk/natGtkLabelPeer.cc, gnu/awt/gtk/natGtkMainThread.cc, gnu/awt/gtk/natGtkToolkit.cc, gnu/awt/gtk/natGtkWindowPeer.cc: Remove files. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74118 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Thomas Fitzsimmons <fitzsim@redhat.com>fitzsim2003-12-012-1/+6
| | | | | | | | * jni/gtk-peer/gnu_java_awt_peer_gtk_GdkPixbufDecoder.c (closed): Mark loader parameter as unused. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74115 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Michael Koch <konqueror@gmx.de>mkoch2003-12-012-24/+43
| | | | | | | | | | | | | | * gnu/java/net/protocol/http/Connection.java (Connection): Merged class documentation. (socket): Renamed from sock. (Connection): Made protected, documentation added. (connect): Give URL'S host instead of InetAddress to Socket constructor. (disconnect): Documentation added. (getOutputStream): Rewrapped. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74109 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Michael Koch <konqueror@gmx.de>mkoch2003-12-012-8/+62
| | | | | | | | | | | | * gnu/java/net/protocol/file/Connection.java (fileIn): Documentation added. (inputStream): Likewise. (outputStream): Likewise. (Connection): Likewise. (connect): Simplified. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74106 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Thomas Fitzsimmons <fitzsim@redhat.com>fitzsim2003-12-014-351/+668
| | | | | | | | | | | | | * gnu/java/awt/peer/gtk/GtkImage.java (setDimensions, setProperties): Check that io is not null before calling io.imageUpdate. * java/awt/image/ImageConsumer.java (setPixels, imageComplete): Update javadocs. * java/awt/image/PixelGrabber.java: Fix implementation and update javadocs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74103 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-12-01 Michael Koch <konqueror@gmx.de>mkoch2003-12-013-2/+7
| | | | | | | | | | * gnu/java/net/natPlainSocketImplPosix.cc bind(): Dont set SockedImpl.address field on succesful bind. * gnu/java/net/natPlainSocketImplWin32.cc bind(): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74102 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-30 Jeff Sturm <jsturm@one-point.com>mkoch2003-11-305-25/+21
| | | | | | | | | | | | | | | | * java/net/InetAddress.java: (static): Don'f force DNS request for ANY_IF address. 2003-11-30 Michael Koch <konqueror@gmx.de> * java/net/InetAddress.java, java/net/natInetAddressNoNet.cc, java/net/natInetAddressPosix.cc, java/net/natInetAddressWin32.cc: Reverted my last patch. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74074 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-28 Michael Koch <konqueror@gmx.de>mkoch2003-11-285-7/+36
| | | | | | | | | | | | | | | * java/net/InetAddress.java (lookup): New method that doesnt lookup "0.0.0.0". (ImplLookup): Renamed from lookup. * java/net/natInetAddressNoNet.cc (ImplLookup): Renamed from lookup. * java/net/natInetAddressPosix.cc (ImplLookup): Renamed from lookup. * java/net/natInetAddressWin32.cc (ImplLookup): Renamed from lookup. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74026 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-28 Bryce McKinlay <bryce@mckinlay.net.nz>tromey2003-11-284-365/+381
| | | | | | | | * configure: Rebuilt. * configure.in: Require gtk and glib 2.2.0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74023 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Dalibor Topic <robilad@kaffe.org>mkoch2003-11-272-5/+86
| | | | | | | | | | | | | | | | | | * java/text/FieldPosition.java (equals): Adapted to handle field_attribute. Added fast-circuit check for comparison to self. Replaced use of instanceof by getClass to fix symmetry for derived types. (toString): Adapted to handle field_attribute. Improved readability. (hashCode): New method. 2003-11-27 Guilhem Lavaux <guilhem@kaffe.org> * java/text/FieldPosition.java (field_attribute): New field. (FieldPosition (Format.Field), FieldPosition(Format.Field, int), getFieldAttribute): New methods. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73988 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Guilhem Lavaux <guilhem@kaffe.org>mkoch2003-11-272-3/+21
| | | | | | | | | | * java/text/DecimalFormatSymbols.java (locale): New field. (DecimalFormatSymbols (Locale)): Set locale. (serialVersionOnStream): Upgraded to number 2. (readObject): Assign locale if it wasn't by the serializer. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73987 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Guilhem Lavaux <guilhem@kaffe.org>mkoch2003-11-272-54/+126
| | | | | | | | | | | * java/text/FormatCharacterIterator.java: Documented the class and 2003-11-27 Guilhem Lavaux <guilhem@kaffe.org> * java/text/FormatCharacterIterator.java: Fixed some typos. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73986 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Guilhem Lavaux <guilhem@kaffe.org>mkoch2003-11-272-1/+174
| | | | | | | | | | | | | | | | | | | * java/text/NumberFormat.java: (getIntegerInstance) Added the java version in the comments. 2003-11-27 Mark Wielaard <mark@klomp.org> * java/text/NumberFormat.java: Import java.io.InvalidObjectException. (readResolve): Reformat. 2003-11-27 Guilhem Lavaux <guilhem@kaffe.org> * java/text/NumberFormat.java (NumberFormat.Field): New implemented class to match Java 1.4. (getIntegerInstance): Two new Java 1.4 methods.o git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73985 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Ito Kazumitsu <kaz@maczuka.gcd.org>mkoch2003-11-272-4/+12
| | | | | | | | | * java/util/GregorianCalendar.java (getLinearTime): Avoid counting the leap day of the leap year twice. (computeFields): First week of month is 1 not 0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73984 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Mark Wielaard <mark@klomp.org>mkoch2003-11-272-0/+8
| | | | | | | | * javax/swing/plaf/basic/BasicDefaults.java (BasicDefaults): Put AbstractUndoableEdit.undoText and AbstractUndoableEdit.redoText. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73983 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Michael Koch <konqueror@gmx.de>mkoch2003-11-272-38/+43
| | | | | | | | * javax/swing/UIDefaults.java: Reformated to match classpath's version. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73981 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-27 Sascha Brawer <brawer@dandelis.ch>mkoch2003-11-272-10/+17
| | | | | | | | | | * javax/swing/UIManager.java (getDefaults, getDimension, getIcon, getInsets, getInstalledLookAndFeels, getInt, getLookAndFeel, getString, getSystemLookAndFeelClassName): Declare as public. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73980 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Sascha Brawer <brawer@dandelis.ch>mkoch2003-11-267-430/+814
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * javax/swing/undo/StateEdit.java (getPresentationName): Docfix. * javax/swing/undo/AbstractUndoableEdit.java (canUndo, canRedo, isSignificant): Likewise. 2003-11-26 Sascha Brawer <brawer@dandelis.ch> * javax/swing/undo/CompoundEdit.java: Re-format, document. (inProgress): Set initial value to true. (undo, redo, die, canUndo, canRedo): Also call inherited implementation; simplify code structure. (getPresentationName, getUndoPresentationName, getRedoPresentationName): Make behavior dependent on lastEdit. (addEdit, isSignificant): Completely re-written. 2003-11-26 Sascha Brawer <brawer@dandelis.ch> * javax/swing/undo/StateEdit.java: Re-format, document. (undo, redo): Also call inherited implementation. 2003-11-26 Sascha Brawer <brawer@dandelis.ch> * javax/swing/undo/StateEditable.java: Re-format, document. 2003-11-26 Sascha Brawer <brawer@dandelis.ch> * javax/swing/undo/AbstractUndoableEdit.java: Re-format, document. (AbstractUndoableEdit): Initialize hasBeenDone to true. (canUndo, canRedo): Simplify. (getUndoPresentationName, getRedoPresentationName): Support localized message; call getPresentationName() only once. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73967 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 David Belanger <dbelan2@cs.mcgill.ca>mkoch2003-11-262-3/+8
| | | | | | | | * java/util/zip/ZipFile (Zipfile(File)): Set file path as name. (ZipFile(File,int)): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73965 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Stuart Ballard <stuart.ballard@corp.fast.net>mkoch2003-11-263-9/+15
| | | | | | | | | | * java/util/HashMap.java (putAll): Use Iterator hasNext() method. (putAllInternal): Likewise. * java/util/Hashtable.java (putAll): Use Iterator hasNext() method. (putAllInternal): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73964 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-262-1/+39
| | | | | | | | | | | | | | | | * java/net/URLStreamHandler.java (parseURL): Added comment in catch statement. (canonicalizeFilename): Add documentation. (sameURL): Completed documentation. (equals): Likewise. (hostsEqual): Likewise. (getDefaulPort): Likewise. (hashCode): Likewise. (toExternalForm): Likewise. (getHostName): Fix empty hostname check, completed documentation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73962 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/lang/natDouble.cc (parseDouble): Reverted patch oftromey2003-11-262-1/+6
| | | | | | | 2003-11-13. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73956 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Guilhem Lavaux <guilhem@kaffe.org>mkoch2003-11-262-7/+33
| | | | | | | | | | | Mark Wielaard <mark@klomp.org> * java/net/URLStreamHandler (parseUrl): Fixed URL parsing ('@' should be checked to distinguish port from userinfo). (toExternalForm): Add @ userInfo if necessary. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73953 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-262-42/+37
| | | | | | | | | * java/net/DatagramSocket.java (DategramSocket, bind): Moved binding code from DatagramSocket constructor to bind method. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73952 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-263-113/+222
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * java/net/DatagramSocket.java (impl): Made private. (bound): New private member variable. (DatagramSocket): Fixed documentation, use getImpl(). (getImpl): New package-private method. (isClosed): Use getImpl(). (getLocalAddress): Completed documentation, use getImpl(). (getLocalPort): Use getImpl(). (getSoTimeout): Likewise. (setSoTimeout): Likewise. (getSendBufferSize): Likewise. (setSendBufferSize): Likewise. (getReceiveBufferSize): Likewise. (setReceiveBufferSize): Likewise. (connect): Likewise. (disconnect): Likewise. (receive): Likewise. (send): Likewise. (setReuseAddress): Likewise. (setTrafficClass): Likewise. (bind): Added message to exception. (isClosed): Completed documentation. (getChannel): Likewise. (connect): Added missing exception, refined exception message. (isBound): Completed documentation, just return bound. (isConnected): Completed documentation. (getRemoteSocketAddress): Likewise. (getReuseAddress): Completed documentation, use getImpl(). (setSoBroadcast): Likewise. (getSoBroadcast): Likewise. (getTrafficClass): Likewise. (getLocalSocketAddress): Simplified. * java/net/MulticastSocket.java (MulticastSocket): Removed comment not applying anymore. (getInterface): Use getImpl(). (getTTL): Likewise. (getTimeToLive): Likewise. (setInterface): Likewise. (setNetworkInterface): Likewise. (getNetworkInterface): Likewise. (setLoopback): Likewise. (getLoopback): Likewise. (setTTL): Likewise. (setTimeToLive): Likewise. (joinGroup): Likewise. (leaveGroup): Likewise. (send): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73951 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-263-14/+46
| | | | | | | | | | | | | | | | | | | | * java/net/Socket.java (implCreated): Dont set default value explicitely, added documentation. (inputShutdown): Likewise. (outputShutdown): Likewise. (bound): New private member variable. (bind): Set bound to true. (close): Set bound to false. (isBound): Return bound. * java/net/ServerSocket.java (bound): New private member variable. (bind): Set bound to true. (close): Set bound to false. (isBound): Return bound. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73949 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-262-9/+60
| | | | | | | | | | | | | | | | | | | | * java/net/URL.java (URL): Fixed documentation to be HTML compliant. (getContent): Completed documentation. (getFile): Likewise. (getPath): Likewise. (getAuthority): Likewise. (getHost): Likewise. (getDefaultPort): Likewise. (getProtocol): Likewise. (hashCode): Likewise. (openConnection): Likewise. (openStream): Likewise. (set): Likewise. (getURLStreamHandler): Wrapped lines to fit into our 79 chars rule. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73947 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-262-3/+44
| | | | | | | | | | | | | | | | | * java/net/InetSocketAddress.java (hostname): Made private, added documentation. (addr): Likewise. (port): Likewise. (equals): Completed documentation. (getAddress): Likewise. (getHostName): Likewise. (getPort): Likewise. (hashCode): Likewise. (isUnresolved): Likewise. (toString): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73946 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-263-1/+41
| | | | | | | | | | | | * gnu/java/net/protocol/file/Handler.java (Handler): New explicit constructor. (openConnection): Added documentation. * gnu/java/net/protocol/jar/Handler.java (Handler): New explicit constructor. (openConnection): Added documentation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73945 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-26 Michael Koch <konqueror@gmx.de>mkoch2003-11-262-5/+10
| | | | | | | | * java/net/DatagramPacket.java (DatagramPacket): Fixed documentation to become legal HTML. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73944 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-25 Michael Koch <konqueror@gmx.de>mkoch2003-11-252-0/+5
| | | | | | | * gcj/javaprims.h: Added missing java.util.Currency. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73927 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-11-25 Michael Koch <konqueror@gmx.de>mkoch2003-11-252-2/+11
| | | | | | | | | | | | | | * testsuite/libjava.mauve/xfails: Removed these two tests, they mystically pass now: -FAIL: gnu.testlet.java.net.ServerSocket.ServerSocketTest: Error : test_params failed - 5getInetAddress did not return proper values (number 1) -FAIL: gnu.testlet.java.net.Socket.SocketTest: Error : test_BasicServer failed - 11 exception was thrown :Illegal seek (number 1) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73919 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud