- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/awt/ItemSelectable.java (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/awt/ItemSelectable.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* ItemSelectable.java -- Items that can be selected2 Copyright (C) 1999 Free Software Foundation, Inc.1 /* ItemSelectable.java -- tems that can be selected 2 Copyright (C) 1999 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 42 42 43 43 /** 44 * This interface is for objects that can have one or more items 45 * selected. For example, radio buttons. 46 * 47 * @author Aaron M. Renn ([email protected]) 48 */ 44 * This interface is for objects that can have one or more items selected. 45 * For example, radio buttons. 46 * 47 * @author Aaron M. Renn <[email protected]> 48 * @since 1.0 49 * @status updated to 1.4 50 */ 49 51 public interface ItemSelectable 50 52 { 53 54 55 56 57 58 51 59 52 /**53 * Returns the list of objects that are selected in this component.54 *55 * @return The list of objects that are selected, or <code>null</code> if56 * no objects are selected.57 */58 public abstract Object[] 59 getSelectedObjects();60 /** 61 62 63 64 65 66 */ 67 ); 60 68 61 /*************************************************************************/ 62 63 /** 64 * Adds an item listener to this object. It will receive 65 * selection events for this object. 66 * 67 * @param listener The item listener to add. 68 */ 69 public abstract void 70 addItemListener(ItemListener listener); 71 72 /*************************************************************************/ 73 74 /** 75 * Removes an item listener from this object. It will no longer receive 76 * selection change events. 77 * 78 * @param listener The item listener to remove. 79 */ 80 public abstract void 81 removeItemListener(ItemListener listener); 82 69 /** 70 * Removes an item listener from this object. 71 * 72 * @param listener the item listener to remove 73 */ 74 void removeItemListener(ItemListener listener); 83 75 } // interface ItemSelectable 84 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
