~ubuntu-branches/ubuntu/precise/classpath/precise

« back to all changes in this revision

Viewing changes to javax/swing/event/ListSelectionListener.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2006-05-27 16:11:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060527161115-h6e39eposdt5snb6
Tags: 2:0.91-3
* Install header files to /usr/include/classpath.
* debian/control: classpath: Conflict with jamvm < 1.4.3 and
  cacao < 0.96 (Closes: #368172).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ListSelectionListener.java --
2
 
   Copyright (C) 2002 Free Software Foundation, Inc.
 
2
   Copyright (C) 2002, 2006, Free Software Foundation, Inc.
3
3
 
4
4
This file is part of GNU Classpath.
5
5
 
37
37
 
38
38
package javax.swing.event;
39
39
 
40
 
// Imports
41
40
import java.util.EventListener;
42
41
 
 
42
import javax.swing.ListSelectionModel;
 
43
 
43
44
/**
44
 
 * ListSelectionListener public interface
 
45
 * A listener that receives {@link ListSelectionEvent} notifications, 
 
46
 * typically from a {@link ListSelectionModel} when it is modified.
 
47
 *
45
48
 * @author Andrew Selkirk
46
49
 * @author Ronald Veldema
47
50
 */
48
 
public interface ListSelectionListener extends EventListener {
49
 
 
50
 
        /**
51
 
         * Value changed
52
 
         * @param event List Selection Event
53
 
         */
54
 
        void valueChanged(ListSelectionEvent event);
55
 
 
56
 
 
57
 
} // ListSelectionListener
 
51
public interface ListSelectionListener extends EventListener 
 
52
{
 
53
 
 
54
  /**
 
55
   * Receives notification of a {@link ListSelectionEvent}.
 
56
   * 
 
57
   * @param event  the event.
 
58
   */
 
59
  void valueChanged(ListSelectionEvent event);
 
60
 
 
61
}
 
 
b'\\ No newline at end of file'