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. From-SVN: r64794
This commit is contained in:
parent
2ff1fb45d5
commit
5eec7c8caf
libjava
@ -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>
|
2003-03-24 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
* java/io/DataInputStream.java
|
* java/io/DataInputStream.java
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* DropTarget.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.
|
This file is part of GNU Classpath.
|
||||||
|
|
||||||
@ -60,7 +60,9 @@ public class DropTarget
|
|||||||
*/
|
*/
|
||||||
private static final long serialVersionUID = -6283860791671019047L;
|
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
|
implements ActionListener
|
||||||
{
|
{
|
||||||
private Component component;
|
private Component component;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* DropTargetContext.java --
|
/* DropTargetContext.java --
|
||||||
Copyright (C) 2002 Free Software Foundation
|
Copyright (C) 2002, 2003 Free Software Foundation
|
||||||
|
|
||||||
This file is part of GNU Classpath.
|
This file is part of GNU Classpath.
|
||||||
|
|
||||||
@ -55,7 +55,9 @@ public class DropTargetContext implements Serializable
|
|||||||
{
|
{
|
||||||
static final long serialVersionUID = -634158968993743371L;
|
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 boolean isLocal;
|
||||||
protected Transferable transferable;
|
protected Transferable transferable;
|
||||||
|
Loading…
Reference in New Issue
Block a user