+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
/* DropTarget.java --
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
*/
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;
/* DropTargetContext.java --
- Copyright (C) 2002 Free Software Foundation
+ Copyright (C) 2002, 2003 Free Software Foundation
This file is part of GNU Classpath.
{
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;