- Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy pathTableColumnModel.java
244 lines (218 loc) · 8.61 KB
/
TableColumnModel.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
* Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
packagejavax.swing.table;
importjava.util.Enumeration;
importjavax.swing.event.ChangeEvent;
importjavax.swing.event.*;
importjavax.swing.*;
/**
* Defines the requirements for a table column model object suitable for
* use with <code>JTable</code>.
*
* @author Alan Chung
* @author Philip Milne
* @see DefaultTableColumnModel
*/
publicinterfaceTableColumnModel
{
//
// Modifying the model
//
/**
* Appends <code>aColumn</code> to the end of the
* <code>tableColumns</code> array.
* This method posts a <code>columnAdded</code>
* event to its listeners.
*
* @param aColumn the <code>TableColumn</code> to be added
* @see #removeColumn
*/
publicvoidaddColumn(TableColumnaColumn);
/**
* Deletes the <code>TableColumn</code> <code>column</code> from the
* <code>tableColumns</code> array. This method will do nothing if
* <code>column</code> is not in the table's column list.
* This method posts a <code>columnRemoved</code>
* event to its listeners.
*
* @param column the <code>TableColumn</code> to be removed
* @see #addColumn
*/
publicvoidremoveColumn(TableColumncolumn);
/**
* Moves the column and its header at <code>columnIndex</code> to
* <code>newIndex</code>. The old column at <code>columnIndex</code>
* will now be found at <code>newIndex</code>. The column that used
* to be at <code>newIndex</code> is shifted left or right
* to make room. This will not move any columns if
* <code>columnIndex</code> equals <code>newIndex</code>. This method
* posts a <code>columnMoved</code> event to its listeners.
*
* @param columnIndex the index of column to be moved
* @param newIndex index of the column's new location
* @throws IllegalArgumentException if <code>columnIndex</code> or
* <code>newIndex</code>
* are not in the valid range
*/
publicvoidmoveColumn(intcolumnIndex, intnewIndex);
/**
* Sets the <code>TableColumn</code>'s column margin to
* <code>newMargin</code>. This method posts
* a <code>columnMarginChanged</code> event to its listeners.
*
* @param newMargin the width, in pixels, of the new column margins
* @see #getColumnMargin
*/
publicvoidsetColumnMargin(intnewMargin);
//
// Querying the model
//
/**
* Returns the number of columns in the model.
* @return the number of columns in the model
*/
publicintgetColumnCount();
/**
* Returns an <code>Enumeration</code> of all the columns in the model.
* @return an <code>Enumeration</code> of all the columns in the model
*/
publicEnumeration<TableColumn> getColumns();
/**
* Returns the index of the first column in the table
* whose identifier is equal to <code>identifier</code>,
* when compared using <code>equals</code>.
*
* @param columnIdentifier the identifier object
* @return the index of the first table column
* whose identifier is equal to <code>identifier</code>
* @throws IllegalArgumentException if <code>identifier</code>
* is <code>null</code>, or no
* <code>TableColumn</code> has this
* <code>identifier</code>
* @see #getColumn
*/
publicintgetColumnIndex(ObjectcolumnIdentifier);
/**
* Returns the <code>TableColumn</code> object for the column at
* <code>columnIndex</code>.
*
* @param columnIndex the index of the desired column
* @return the <code>TableColumn</code> object for
* the column at <code>columnIndex</code>
*/
publicTableColumngetColumn(intcolumnIndex);
/**
* Returns the width between the cells in each column.
* @return the margin, in pixels, between the cells
*/
publicintgetColumnMargin();
/**
* Returns the index of the column that lies on the
* horizontal point, <code>xPosition</code>;
* or -1 if it lies outside the any of the column's bounds.
*
* In keeping with Swing's separable model architecture, a
* TableColumnModel does not know how the table columns actually appear on
* screen. The visual presentation of the columns is the responsibility
* of the view/controller object using this model (typically JTable). The
* view/controller need not display the columns sequentially from left to
* right. For example, columns could be displayed from right to left to
* accommodate a locale preference or some columns might be hidden at the
* request of the user. Because the model does not know how the columns
* are laid out on screen, the given <code>xPosition</code> should not be
* considered to be a coordinate in 2D graphics space. Instead, it should
* be considered to be a width from the start of the first column in the
* model. If the column index for a given X coordinate in 2D space is
* required, <code>JTable.columnAtPoint</code> can be used instead.
*
* @param xPosition width from the start of the first column in
* the model.
*
* @return the index of the column; or -1 if no column is found
* @see javax.swing.JTable#columnAtPoint
*/
publicintgetColumnIndexAtX(intxPosition);
/**
* Returns the total width of all the columns.
* @return the total computed width of all columns
*/
publicintgetTotalColumnWidth();
//
// Selection
//
/**
* Sets whether the columns in this model may be selected.
* @param flag true if columns may be selected; otherwise false
* @see #getColumnSelectionAllowed
*/
publicvoidsetColumnSelectionAllowed(booleanflag);
/**
* Returns true if columns may be selected.
* @return true if columns may be selected
* @see #setColumnSelectionAllowed
*/
publicbooleangetColumnSelectionAllowed();
/**
* Returns an array of indices of all selected columns.
* @return an array of integers containing the indices of all
* selected columns; or an empty array if nothing is selected
*/
publicint[] getSelectedColumns();
/**
* Returns the number of selected columns.
*
* @return the number of selected columns; or 0 if no columns are selected
*/
publicintgetSelectedColumnCount();
/**
* Sets the selection model.
*
* @param newModel a <code>ListSelectionModel</code> object
* @see #getSelectionModel
*/
publicvoidsetSelectionModel(ListSelectionModelnewModel);
/**
* Returns the current selection model.
*
* @return a <code>ListSelectionModel</code> object
* @see #setSelectionModel
*/
publicListSelectionModelgetSelectionModel();
//
// Listener
//
/**
* Adds a listener for table column model events.
*
* @param x a <code>TableColumnModelListener</code> object
*/
publicvoidaddColumnModelListener(TableColumnModelListenerx);
/**
* Removes a listener for table column model events.
*
* @param x a <code>TableColumnModelListener</code> object
*/
publicvoidremoveColumnModelListener(TableColumnModelListenerx);
}