OSDN Git Service

* java/lang/String.java: Reordered to follow Classpath; merged in
[pf3gnuchains/gcc-fork.git] / libjava / ChangeLog
index 16febfd..d93cdd3 100644 (file)
@@ -1,7 +1,174 @@
+2003-03-29  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/String.java: Reordered to follow Classpath; merged in
+       javadoc.
+
+       * java/text/MessageFormat.java: Removed some whitespace.
+
+       * Makefile.in: Rebuilt.
+       * Makefile.am (awt_java_source_files): Added new files.
+       * gnu/javax/rmi/PortableServer.java,
+       gnu/javax/rmi/CORBA/DelegateFactory.java,
+       gnu/javax/rmi/CORBA/GetDelegateInstanceException.java,
+       gnu/javax/rmi/CORBA/PortableRemoteObjectDelegateImpl.java,
+       gnu/javax/rmi/CORBA/StubDelegateImpl.java,
+       gnu/javax/rmi/CORBA/UtilDelegateImpl.java,
+       gnu/javax/rmi/CORBA/ValueHandlerImpl.java,
+       javax/rmi/BAD_OPERATION.java, javax/rmi/ORB.java,
+       javax/rmi/PortableRemoteObject.java,
+       javax/rmi/CORBA/ClassDesc.java, javax/rmi/CORBA/ObjectImpl.java,
+       javax/rmi/CORBA/PortableRemoteObjectDelegate.java,
+       javax/rmi/CORBA/Stub.java, javax/rmi/CORBA/StubDelegate.java,
+       javax/rmi/CORBA/SystemException.java, javax/rmi/CORBA/Tie.java,
+       javax/rmi/CORBA/Util.java, javax/rmi/CORBA/UtilDelegate.java,
+       javax/rmi/CORBA/ValueHandler.java: New files from Classpath.
+
+       * java/lang/natClass.cc (newInstance): Put method name in
+       exception.
+       (getConstructor): Likewise.
+       (getDeclaredConstructor): Likewise.
+       (getPrivateMethod): Likewise.
+
+2003-03-28  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/reflect/Proxy.java: New version from Classpath.
+       * java/lang/Package.java: New version from Classpath.
+
+2003-03-29  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * configure.in (HAVE_BACKTRACE) [s390*-*-linux*]: Define.
+       * configure: Regenerate.
+
+2003-03-28  Michael Koch  <konqueror@gmx.de>
+
+       * java/io/File.java:
+       Import needed classes instead of whole packages, merged class
+       documentation with classpath, moved constants and variables to top of
+       class.
+       * java/io/PrintStream.java:
+       Merged class documentation with classpath, moved constants and
+       variables to top of class.
+       * java/io/RandomAccessFile.java
+       (RandomAccessFile): Merged with classpath.
+       (read): Merged with classpath).
+       (read*): Reformatted.
+
+2003-03-28  Michael Koch  <konqueror@gmx.de>
+
+       * java/io/FileDescriptor.java
+       (finalize): Throws Throwable, not IOException.
+       * java/io/ObjectOutputStream.java
+       (PutField.put): Doesnt throws anything.
+
+2003­03-28  Michael Koch  <konqueror@gmx.de>
+
+       * java/io/FileOutputStream.java:
+       Merged class documentation and authors with classpath.
+       (FileOutputStream): Partly merged with classpath.
+       (write): Merged with classpath.
+       (getChannel): Make it synchronized instead of explicit block in this
+       method.
+       * java/io/RandomAccessFile.java:
+       Merged class documentation and authors with classpath.
+
+2003-03-26  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/natRuntime.cc (insertSystemProperties): Set
+       gnu.classpath.home.url.
+       * Makefile.in: Rebuilt.
+       * Makefile.am: Define LIBDIR.
+
+2003-03-25  Michael Koch  <konqueror@gmx.de>
+
+       * java/io/FileInputStream.java
+       (read): Renamed b to buf and off to offset.
+       * java/io/FileOutputStream.java
+       (ch): Documentation added.
+       (FileOutputStream): Documentation added.
+       (getFD): Documentation added.
+       (write): Documentation added.
+       (close): Documentation added.
+       (getChannel): Documentation added.
+
+2003-03-24  Michael Koch  <konqueror@gmx.de>
+
+       * java/io/DataOutputStream.java
+       (write): Merged from classpath.
+       * java/io/File.java:
+       Merged copyrigth with classpath.
+       * java/io/FileInputStream.java
+       (getChannel): Made it synchronized instead of using a synchronized
+       block.
+       * java/io/FileOutputStream.java: Reformatted.
+       * java/io/InputStreamReader.java
+       (InputStreamReader): Renamed enc to encoding_name.
+       (close): Merged documentation from classpath.
+       (getEncoding): Merged documentation from classpath.
+       (ready): Merged documentation from classpath.
+       (read): Merged documentation from classpath.
+       * java/io/LineNumberReader.java
+       (lineNumber): Made it private.
+       (LineNumberReader): Use Constant instead of a direct value.
+       * java/io/OutputStreamWriter.java
+       (OutputStreamWriter): Renamed enc to encoding_scheme, merged
+       documentation from classpath.
+       (close): Merged documentation from classpath.
+       (flush): Merged documentation from classpath.
+       (write): Merged documentation from classpath.
+       * java/io/PrintStream.java: Reformatted.
+
+2003-03-24  Michael Koch  <konqueror@gmx.de>
+
+       * javax/swing/text/ComponentView.java
+       (getComponent): Must be final.
+       * javax/swing/tree/DefaultTreeCellRenderer.java:
+       Reformatted.
+       * javax/swing/undo/StateEditable.java:
+       Reformatted.
+
+2003-03-24  Michael Koch  <konqueror@gmx.de>
+
+       * java/rmi/activation/ActivationInstantiator.java:
+       Reformatted.
+       * java/rmi/activation/Activator.java:
+       Reformatted.
+       * java/rmi/registry/RegistryHandler.java:
+       Remerged from classpath.
+
+2003-03-24  Michael Koch  <konqueror@gmx.de>
+
+       * java/util/Date.java:
+       Fixed documentation starting tag to make javadoc happy.
+       * java/util/regex/Pattern.java
+       (Pattern): Implements Serializable.
+       * java/util/PatternSyntaxException.java
+       (serialVersionUID): New member variable.
+
+2003-03-24  Michael Koch  <koqnueror@gmx.de>
+
+       * java/awt/ContainerOrderFocusTraversalPolicy.java
+       (getFirstComponent): Implemented.
+       (getLastComponent): Implemented.
+       (getDefaultComponent): Implemented.
+       (setImplicitDownCycleTraversal): Fixed implementation.
+       * java/awt/Robot.java
+       (Robot): Added documentation.
+       * java/awt/Toolkit.java
+       (getFontList): Deprecated.
+       (getFontMetrics): Deprecated.
+       (getPrintJob): Added documentation.
+       (getSystemSelection): Added documentation.
+       (getLockingKeyState): Added documentation.
+       (setLockingKeyState): Added documentation.
+       (createCustomCursor): Added documentation.
+       (getBestCursorSize): Added documentation.
+       (getMaximumCursorColors): Added documentation.
+       (isFrameStateSupported): Added documentation.
+
 2003-03-24  Michael Koch  <konqueror@gmx.de>
 
        * java/io/RandomAccessFile.java:
-       More little merges with libgcj.
+       More little merges with classpath. No code changes.
 
 2003-03-24  Michael Koch  <konqueror@gmx.de>