This abstract class provides default implementations for most of the methods in the TableModel interface. It takes care of the management of listeners and provides some conveniences for generating TableModelEvents and dispatching them to the listeners. To create a concrete TableModel as a subclass of AbstractTableModel you need only provide implementations for the following three methods:
public int getRowCount(); public int getColumnCount(); public Object getValueAt(int row, int column);
Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans™ has been added to the java.beans package. Please see XMLEncoder.
This abstract class provides default implementations for most of the methods in the TableModel interface. It takes care of the management of listeners and provides some conveniences for generating TableModelEvents and dispatching them to the listeners. To create a concrete TableModel as a subclass of AbstractTableModel you need only provide implementations for the following three methods: public int getRowCount(); public int getColumnCount(); public Object getValueAt(int row, int column); Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans™ has been added to the java.beans package. Please see XMLEncoder.
(add-table-model-listener this l)
Adds a listener to the list that's notified each time a change to the data model occurs.
l - the TableModelListener - javax.swing.event.TableModelListener
Adds a listener to the list that's notified each time a change to the data model occurs. l - the TableModelListener - `javax.swing.event.TableModelListener`
(cell-editable? this row-index column-index)
Returns false. This is the default implementation for all cells.
row-index - the row being queried - int
column-index - the column being queried - int
returns: false - boolean
Returns false. This is the default implementation for all cells. row-index - the row being queried - `int` column-index - the column being queried - `int` returns: false - `boolean`
(find-column this column-name)
Returns a column given its name. Implementation is naive so this should be overridden if this method is to be called often. This method is not in the TableModel interface and is not used by the JTable.
column-name - string containing name of column to be located - java.lang.String
returns: the column with columnName, or -1 if not found - int
Returns a column given its name. Implementation is naive so this should be overridden if this method is to be called often. This method is not in the TableModel interface and is not used by the JTable. column-name - string containing name of column to be located - `java.lang.String` returns: the column with columnName, or -1 if not found - `int`
(fire-table-cell-updated this row column)
Notifies all listeners that the value of the cell at [row, column] has been updated.
row - row of cell which has been updated - int
column - column of cell which has been updated - int
Notifies all listeners that the value of the cell at [row, column] has been updated. row - row of cell which has been updated - `int` column - column of cell which has been updated - `int`
(fire-table-changed this e)
Forwards the given notification event to all TableModelListeners that registered themselves as listeners for this table model.
e - the event to be forwarded - javax.swing.event.TableModelEvent
Forwards the given notification event to all TableModelListeners that registered themselves as listeners for this table model. e - the event to be forwarded - `javax.swing.event.TableModelEvent`
(fire-table-data-changed this)
Notifies all listeners that all cell values in the table's rows may have changed. The number of rows may also have changed and the JTable should redraw the table from scratch. The structure of the table (as in the order of the columns) is assumed to be the same.
Notifies all listeners that all cell values in the table's rows may have changed. The number of rows may also have changed and the JTable should redraw the table from scratch. The structure of the table (as in the order of the columns) is assumed to be the same.
(fire-table-rows-deleted this first-row last-row)
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been deleted.
first-row - the first row - int
last-row - the last row - int
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been deleted. first-row - the first row - `int` last-row - the last row - `int`
(fire-table-rows-inserted this first-row last-row)
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been inserted.
first-row - the first row - int
last-row - the last row - int
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been inserted. first-row - the first row - `int` last-row - the last row - `int`
(fire-table-rows-updated this first-row last-row)
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been updated.
first-row - the first row - int
last-row - the last row - int
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been updated. first-row - the first row - `int` last-row - the last row - `int`
(fire-table-structure-changed this)
Notifies all listeners that the table's structure has changed. The number of columns in the table, and the names and types of the new columns may be different from the previous state. If the JTable receives this event and its autoCreateColumnsFromModel flag is set it discards any table columns that it had and reallocates default columns in the order they appear in the model. This is the same as calling setModel(TableModel) on the JTable.
Notifies all listeners that the table's structure has changed. The number of columns in the table, and the names and types of the new columns may be different from the previous state. If the JTable receives this event and its autoCreateColumnsFromModel flag is set it discards any table columns that it had and reallocates default columns in the order they appear in the model. This is the same as calling setModel(TableModel) on the JTable.
(get-column-class this column-index)
Returns Object.class regardless of columnIndex.
column-index - the column being queried - int
returns: the Object.class - java.lang.Class<?>
Returns Object.class regardless of columnIndex. column-index - the column being queried - `int` returns: the Object.class - `java.lang.Class<?>`
(get-column-name this column)
Returns a default name for the column using spreadsheet conventions: A, B, C, ... Z, AA, AB, etc. If column cannot be found, returns an empty string.
column - the column being queried - int
returns: a string containing the default name of column - java.lang.String
Returns a default name for the column using spreadsheet conventions: A, B, C, ... Z, AA, AB, etc. If column cannot be found, returns an empty string. column - the column being queried - `int` returns: a string containing the default name of column - `java.lang.String`
(get-listeners this listener-type)
Returns an array of all the objects currently registered as FooListeners upon this AbstractTableModel. FooListeners are registered using the addFooListener method.
You can specify the listenerType argument with a class literal, such as FooListener.class. For example, you can query a model m for its table model listeners with the following code:
TableModelListener[] tmls = (TableModelListener[])(m.getListeners(TableModelListener.class));
If no such listeners exist, this method returns an empty array.
listener-type - the type of listeners requested; this parameter should specify an interface that descends from java.util.EventListener - java.lang.Class
returns: an array of all objects registered as
FooListeners on this component,
or an empty array if no such
listeners have been added - <T extends java.util.EventListener> T[]
throws: java.lang.ClassCastException - if listenerType doesn't specify a class or interface that implements java.util.EventListener
Returns an array of all the objects currently registered as FooListeners upon this AbstractTableModel. FooListeners are registered using the addFooListener method. You can specify the listenerType argument with a class literal, such as FooListener.class. For example, you can query a model m for its table model listeners with the following code: TableModelListener[] tmls = (TableModelListener[])(m.getListeners(TableModelListener.class)); If no such listeners exist, this method returns an empty array. listener-type - the type of listeners requested; this parameter should specify an interface that descends from java.util.EventListener - `java.lang.Class` returns: an array of all objects registered as FooListeners on this component, or an empty array if no such listeners have been added - `<T extends java.util.EventListener> T[]` throws: java.lang.ClassCastException - if listenerType doesn't specify a class or interface that implements java.util.EventListener
(get-table-model-listeners this)
Returns an array of all the table model listeners registered on this model.
returns: all of this model's TableModelListeners
or an empty
array if no table model listeners are currently registered - javax.swing.event.TableModelListener[]
Returns an array of all the table model listeners registered on this model. returns: all of this model's TableModelListeners or an empty array if no table model listeners are currently registered - `javax.swing.event.TableModelListener[]`
(remove-table-model-listener this l)
Removes a listener from the list that's notified each time a change to the data model occurs.
l - the TableModelListener - javax.swing.event.TableModelListener
Removes a listener from the list that's notified each time a change to the data model occurs. l - the TableModelListener - `javax.swing.event.TableModelListener`
(set-value-at this a-value row-index column-index)
This empty implementation is provided so users don't have to implement this method if their data model is not editable.
a-value - value to assign to cell - java.lang.Object
row-index - row of cell - int
column-index - column of cell - int
This empty implementation is provided so users don't have to implement this method if their data model is not editable. a-value - value to assign to cell - `java.lang.Object` row-index - row of cell - `int` column-index - column of cell - `int`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close