]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2003-03-24 Michael Koch <konqueror@gmx.de>
authorMichael Koch <konqueror@gmx.de>
Mon, 24 Mar 2003 13:12:55 +0000 (13:12 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Mon, 24 Mar 2003 13:12:55 +0000 (13:12 +0000)
* 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.

From-SVN: r64794

libjava/ChangeLog
libjava/java/awt/dnd/DropTarget.java
libjava/java/awt/dnd/DropTargetContext.java

index 07494cd81e077b90e1b8807d8479476a94d71165..18400da496b3b3b5bff8da49a890e8c5649ea5ca 100644 (file)
@@ -1,3 +1,12 @@
+2003-03-24  Michael Koch  <konqueror@gmx.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@gmx.de>
 
        * java/io/DataInputStream.java
index 3be2786a5a9c636e039c7413a0e3b372a799901e..4063e206a2bf93776833e8211777d1c8604f4625 100644 (file)
@@ -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 @@ public class DropTarget
    */
   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 7b945ef4ca02e948fdd2b7f0b6843714e4106e9a..4301fbccc85642cd29cb6325f179e7af4de3e3ce 100644 (file)
@@ -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 @@ public class DropTargetContext implements Serializable
 {
   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;