source: trunk/gcc/libjava/javax/swing/event/TableModelEvent.java

Last change on this file was 1389, checked in by bird, 21 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 5.1 KB
Line 
1/* TableModelEvent.java --
2 Copyright (C) 2002 Free Software Foundation, Inc.
3
4This file is part of GNU Classpath.
5
6GNU Classpath is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Classpath is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Classpath; see the file COPYING. If not, write to the
18Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
1902111-1307 USA.
20
21Linking this library statically or dynamically with other modules is
22making a combined work based on this library. Thus, the terms and
23conditions of the GNU General Public License cover the whole
24combination.
25
26As a special exception, the copyright holders of this library give you
27permission to link this library with independent modules to produce an
28executable, regardless of the license terms of these independent
29modules, and to copy and distribute the resulting executable under
30terms of your choice, provided that you also meet, for each linked
31independent module, the terms and conditions of the license of that
32module. An independent module is a module which is not derived from
33or based on this library. If you modify this library, you may extend
34this exception to your version of the library, but you are not
35obligated to do so. If you do not wish to do so, delete this
36exception statement from your version. */
37
38package javax.swing.event;
39
40// Imports
41import java.util.EventObject;
42import javax.swing.table.TableModel;
43
44/**
45 * TableModelEvent
46 * @author Andrew Selkirk
47 */
48public class TableModelEvent extends EventObject {
49
50 //-------------------------------------------------------------
51 // Constants --------------------------------------------------
52 //-------------------------------------------------------------
53
54 /**
55 * ALL_COLUMNS
56 */
57 public static int ALL_COLUMNS = -1;
58
59 /**
60 * DELETE
61 */
62 public static int DELETE = -1;
63
64 /**
65 * HEADER_ROW
66 */
67 public static int HEADER_ROW = -1;
68
69 /**
70 * INSERT
71 */
72 public static int INSERT = 1;
73
74 /**
75 * UPDATE
76 */
77 public static int UPDATE = 0;
78
79
80 //-------------------------------------------------------------
81 // Variables --------------------------------------------------
82 //-------------------------------------------------------------
83
84 /**
85 * column
86 */
87 protected int column = 0;
88
89 /**
90 * firstRow
91 */
92 protected int firstRow = 0;
93
94 /**
95 * lastRow
96 */
97 protected int lastRow = 0;
98
99 /**
100 * type
101 */
102 protected int type = 0;
103
104
105 //-------------------------------------------------------------
106 // Initialization ---------------------------------------------
107 //-------------------------------------------------------------
108
109 /**
110 * Constructor TableModelEvent
111 * @param source Source object
112 */
113 public TableModelEvent(TableModel source) {
114 this(source, 0, source.getRowCount(), ALL_COLUMNS, UPDATE);
115 } // TableModelEvent()
116
117 /**
118 * Constructor TableModelEvent
119 * @param source Source table model
120 * @param row Updated row
121 */
122 public TableModelEvent(TableModel source, int row) {
123 this(source, row, row, ALL_COLUMNS, UPDATE);
124 } // TableModelEvent()
125
126 /**
127 * Constructor TableModelEvent
128 * @param source Source table model
129 * @param firstRow First row of update
130 * @param lastRow Last row of update
131 */
132 public TableModelEvent(TableModel source, int firstRow,
133 int lastRow) {
134 this(source, firstRow, lastRow, ALL_COLUMNS, UPDATE);
135 } // TableModelEvent()
136
137 /**
138 * Constructor TableModelEvent
139 * @param source Source table model
140 * @param firstRow First row of update
141 * @param lastRow Last row of update
142 * @param column Affected column
143 */
144 public TableModelEvent(TableModel source, int firstRow,
145 int lastRow, int column) {
146 this(source, firstRow, lastRow, column, UPDATE);
147 } // TableModelEvent()
148
149 /**
150 * Constructor TableModelEvent
151 * @param source Source table model
152 * @param firstRow First row of update
153 * @param lastRow Last row of update
154 * @param column Affected column
155 * @param type Type of change
156 */
157 public TableModelEvent(TableModel source, int firstRow,
158 int lastRow, int column, int type) {
159 super(source);
160 this.firstRow = firstRow;
161 this.lastRow = lastRow;
162 this.column = column;
163 this.type = type;
164 } // TableModelEvent()
165
166
167 //-------------------------------------------------------------
168 // Methods ----------------------------------------------------
169 //-------------------------------------------------------------
170
171 /**
172 * getColumn
173 * @returns column
174 */
175 public int getColumn() {
176 return column;
177 } // getColumn()
178
179 /**
180 * getFirstRow
181 * @returns row
182 */
183 public int getFirstRow() {
184 return firstRow;
185 } // getFirstRow()
186
187 /**
188 * getLastRow
189 * @returns row
190 */
191 public int getLastRow() {
192 return lastRow;
193 } // getLastRow()
194
195 /**
196 * Get type
197 * @returns Type of event
198 */
199 public int getType() {
200 return type;
201 } // getType()
202
203
204} // TableModelEvent
Note: See TracBrowser for help on using the repository browser.