This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
FYI: Patch: java.awt.dnd
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Mon, 24 Mar 2003 14:14:19 +0100
- Subject: FYI: Patch: java.awt.dnd
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I commit the attached patch to trunk to merge java.awt.dnd with
classpath again.
Michael
- --
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE+fwSrWSOgCCdjSDsRAqJ5AJ0YsemnMlZzNQkczZnNIOIoXdRTXACggCss
ZmJuCn5HIQgVVBqSXMvK1I8=
=ADN9
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1806
diff -u -r1.1806 ChangeLog
--- ChangeLog 24 Mar 2003 08:27:27 -0000 1.1806
+++ ChangeLog 24 Mar 2003 13:11:33 -0000
@@ -1,5 +1,14 @@
2003-03-24 Michael Koch <konqueror at gmx dot de>
+ * java/awt/dnd/DropTarget.java
+ (DropTargetAutoScroller): According to the online documentation, this
+ is protected, but in reality it is public.
+ * java/awt/dnd/DropTargetContext.java
+ (TransferableProxy): According to the online documentation, this
+ is protected, but in reality it is public.
+
+2003-03-24 Michael Koch <konqueror at gmx dot de>
+
* java/io/DataInputStream.java
(): Wrapped documentation line.
(): Fixed @return tag.
Index: java/awt/dnd/DropTarget.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/awt/dnd/DropTarget.java,v
retrieving revision 1.6
diff -u -r1.6 DropTarget.java
--- java/awt/dnd/DropTarget.java 2 Mar 2003 14:24:48 -0000 1.6
+++ java/awt/dnd/DropTarget.java 24 Mar 2003 13:11:33 -0000
@@ -1,5 +1,5 @@
/* DropTarget.java --
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -60,7 +60,9 @@
*/
private static final long serialVersionUID = -6283860791671019047L;
- protected static class DropTargetAutoScroller
+ /** @specnote According to the online documentation, this is
+ * protected, but in reality it is public. */
+ public static class DropTargetAutoScroller
implements ActionListener
{
private Component component;
Index: java/awt/dnd/DropTargetContext.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/awt/dnd/DropTargetContext.java,v
retrieving revision 1.5
diff -u -r1.5 DropTargetContext.java
--- java/awt/dnd/DropTargetContext.java 2 Mar 2003 15:44:48 -0000 1.5
+++ java/awt/dnd/DropTargetContext.java 24 Mar 2003 13:11:33 -0000
@@ -1,5 +1,5 @@
/* DropTargetContext.java --
- Copyright (C) 2002 Free Software Foundation
+ Copyright (C) 2002, 2003 Free Software Foundation
This file is part of GNU Classpath.
@@ -55,7 +55,9 @@
{
static final long serialVersionUID = -634158968993743371L;
- protected class TransferableProxy implements Transferable
+ /** @specnote According to the online documentation, this is
+ * protected, but in reality it is public. */
+ public class TransferableProxy implements Transferable
{
protected boolean isLocal;
protected Transferable transferable;