diff options
| author | Michael Koch <konqueror@gmx.de> | 2005-01-26 13:44:46 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2005-01-26 13:44:46 +0000 |
| commit | 41efec6cd5583ae00e2db3c4266dc2af28a8a113 (patch) | |
| tree | 8d880283ab89d427bc8acb0a558c98c2b9576867 /java/awt/dnd | |
| parent | f49839a2d6f09708799455b5c1effe96737e67c6 (diff) | |
| download | classpath-41efec6cd5583ae00e2db3c4266dc2af28a8a113.tar.gz | |
2005-01-26 Michael Koch <konqueror@gmx.de>
* java/awt/Window.java
(AccessibleWindow.getAccessibleStateSet): Fixed method name.
* java/awt/dnd/DnDConstants.java
(DnDConstants): New private constructor.
Diffstat (limited to 'java/awt/dnd')
| -rw-r--r-- | java/awt/dnd/DnDConstants.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/java/awt/dnd/DnDConstants.java b/java/awt/dnd/DnDConstants.java index 3e78121a5..a64fa5a76 100644 --- a/java/awt/dnd/DnDConstants.java +++ b/java/awt/dnd/DnDConstants.java @@ -1,5 +1,5 @@ /* DnDConstants.java -- constants for drag-and-drop operations - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -69,4 +69,9 @@ public final class DnDConstants /** A synonym for {@link #ACTION_LINK}. */ public static final int ACTION_REFERENCE = ACTION_LINK; -} // class DnDConstants + + private DnDConstants() + { + // Do nothing here. + } +} |
