Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/awt/ItemSelectable.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 /* ItemSelectable.java -- Items that can be selected
    2    Copyright (C) 1999 Free Software Foundation, Inc.
     1/* ItemSelectable.java -- tems that can be selected
     2   Copyright (C) 1999 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    4242
    4343/**
    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 */
    4951public interface ItemSelectable
    5052{
     53
     54
     55
     56
     57
     58
    5159
    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> if
    56   * no objects are selected.
    57   */
    58 public abstract Object[]
    59 getSelectedObjects();
     60/**
     61 
     62 
     63 
     64 
     65 
     66   */
     67);
    6068
    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);
    8375} // interface ItemSelectable
    84 
Note: See TracChangeset for help on using the changeset viewer.