diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-03-24 13:12:55 +0000 |
|---|---|---|
| committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-24 13:12:55 +0000 |
| commit | 5eec7c8caf9d055aa8ecd76368ef32399df093d0 (patch) | |
| tree | e7a1c0910118e98b698e1d522ceadd41fad6dbcf /libjava/java/awt/dnd/DropTargetContext.java | |
| parent | 2ff1fb45d5d28fcf250e648251fe09444fb9e763 (diff) | |
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
Diffstat (limited to 'libjava/java/awt/dnd/DropTargetContext.java')
| -rw-r--r-- | libjava/java/awt/dnd/DropTargetContext.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libjava/java/awt/dnd/DropTargetContext.java b/libjava/java/awt/dnd/DropTargetContext.java index 7b945ef4ca0..4301fbccc85 100644 --- a/libjava/java/awt/dnd/DropTargetContext.java +++ b/libjava/java/awt/dnd/DropTargetContext.java @@ -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; |
