diff options
author | Tom Tromey <tromey@redhat.com> | 2001-04-15 17:48:16 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2001-04-15 17:48:16 +0000 |
commit | 0ec5e7b37a1e18c6ef465f942a0de71970b45ba2 (patch) | |
tree | 539001206f9b8423a6ccf2679dcd7f9d642d2130 | |
parent | fb5c47ee7e34d5715ad002e3c5503e4e7870a90e (diff) | |
download | classpath-0ec5e7b37a1e18c6ef465f942a0de71970b45ba2.tar.gz |
2001-04-15 Ian D. Stewart <idstewart@softhome.net>
* javax/accessibility/AccessibleComponent.java (getAccessibleAt): Added
identifier 'point' to method declaration.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | javax/accessibility/AccessibleComponent.java | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-04-15 Ian D. Stewart <idstewart@softhome.net> + + * javax/accessibility/AccessibleComponent.java (getAccessibleAt): Added + identifier 'point' to method declaration. + 2001-03-24 Bryce McKinlay <bryce@albatross.co.nz> * java/util/HashMap.java (HashMap): If 0 is given for initialCapacity diff --git a/javax/accessibility/AccessibleComponent.java b/javax/accessibility/AccessibleComponent.java index c09318d79..d8975f26f 100644 --- a/javax/accessibility/AccessibleComponent.java +++ b/javax/accessibility/AccessibleComponent.java @@ -1,6 +1,6 @@ /* AccessibleComponent.java -- Java interface for aiding in accessibly rendering other Java components - Copyright (C) 2000 Free Software Foundation, Inc. + Copyright (C) 2000, 2001 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -81,7 +81,7 @@ public abstract interface AccessibleComponent { * @return <code>null</code> if no <code>Accessible</code> child exists * at the given point */ - public abstract Accessible getAccessibleAt(Point); + public abstract Accessible getAccessibleAt(Point point); /** * Get the background color of this component. |