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

« back to all changes in this revision

Viewing changes to javax/swing/AbstractListModel.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
/* AbstractListModel.java --
2
 
   Copyright (C) 2002, 2004  Free Software Foundation, Inc.
 
2
   Copyright (C) 2002, 2004, 2006, Free Software Foundation, Inc.
3
3
 
4
4
This file is part of GNU Classpath.
5
5
 
58
58
  /** List of ListDataListeners called for each change to the list. */
59
59
  protected EventListenerList listenerList;
60
60
 
 
61
  /**
 
62
   * Creates a new model instance - initialises the event listener list.
 
63
   */
61
64
  public AbstractListModel()
62
65
  {
63
66
    listenerList = new EventListenerList();
88
91
  /**
89
92
   * Call {@link ListDataListener#contentsChanged} on each element of the
90
93
   * {@link #listenerList} which is a {@link ListDataListener}. The event
91
 
   * fired has type {@ListDataEvent.CONTENTS_CHANGED} and represents a
 
94
   * fired has type {@link ListDataEvent#CONTENTS_CHANGED} and represents a
92
95
   * change to the data elements in the range [startIndex, endIndex]
93
96
   * inclusive.
94
97
   *
110
113
  /**
111
114
   * Call {@link ListDataListener#intervalAdded} on each element of the
112
115
   * {@link #listenerList} which is a {@link ListDataListener}. The event
113
 
   * fired has type {@ListDataEvent.INTERVAL_ADDED} and represents an
 
116
   * fired has type {@link ListDataEvent#INTERVAL_ADDED} and represents an
114
117
   * addition of the data elements in the range [startIndex, endIndex]
115
118
   * inclusive.
116
119
   *
132
135
  /**
133
136
   * Call {@link ListDataListener#intervalRemoved} on each element of the
134
137
   * {@link #listenerList} which is a {@link ListDataListener}. The event
135
 
   * fired has type {@ListDataEvent.INTERVAL_REMOVED} and represents a
 
138
   * fired has type {@link ListDataEvent#INTERVAL_REMOVED} and represents a
136
139
   * removal of the data elements in the range [startIndex, endIndex]
137
140
   * inclusive.
138
141
   *