java.lang.Objectjavax.swing.table.AbstractTableModel
public abstract class AbstractTableModel
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();
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 JavaBeansTM
has been added to the java.beans package.
Please see XMLEncoder.
| Field Summary | |
|---|---|
protected EventListenerList |
listenerList
List of listeners |
| Constructor Summary | |
|---|---|
AbstractTableModel()
|
|
| Method Summary | ||
|---|---|---|
void |
addTableModelListener(TableModelListener l)
Adds a listener to the list that's notified each time a change to the data model occurs. |
|
int |
findColumn(String columnName)
Returns a column given its name. |
|
void |
fireTableCellUpdated(int row,
int column)
Notifies all listeners that the value of the cell at [row, column] has been updated. |
|
void |
fireTableChanged(TableModelEvent e)
Forwards the given notification event to all TableModelListeners that registered
themselves as listeners for this table model. |
|
void |
fireTableDataChanged()
Notifies all listeners that all cell values in the table's rows may have changed. |
|
void |
fireTableRowsDeleted(int firstRow,
int lastRow)
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been deleted. |
|
void |
fireTableRowsInserted(int firstRow,
int lastRow)
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been inserted. |
|
void |
fireTableRowsUpdated(int firstRow,
int lastRow)
Notifies all listeners that rows in the range [firstRow, lastRow], inclusive, have been updated. |
|
void |
fireTableStructureChanged()
Notifies all listeners that the table's structure has changed. |
|
Class<?> |
getColumnClass(int columnIndex)
Returns Object.class regardless of columnIndex. |
|
String |
getColumnName(int column)
Returns a default name for the column using spreadsheet conventions: A, B, C, ... |
|
|
getListeners(Class<T> listenerType)
Returns an array of all the objects currently registered as FooListeners
upon this AbstractTableModel. |
|
TableModelListener[] |
getTableModelListeners()
Returns an array of all the table model listeners registered on this model. |
|
boolean |
isCellEditable(int rowIndex,
int columnIndex)
Returns false. |
|
void |
removeTableModelListener(TableModelListener l)
Removes a listener from the list that's notified each time a change to the data model occurs. |
|
void |
setValueAt(Object aValue,
int rowIndex,
int columnIndex)
This empty implementation is provided so users don't have to implement this method if their data model is not editable. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface javax.swing.table.TableModel |
|---|
getColumnCount, getRowCount, getValueAt |
| Field Detail |
|---|
protected EventListenerList listenerList
| Constructor Detail |
|---|
public AbstractTableModel()
| Method Detail |
|---|
public String getColumnName(int column)
column cannot be found,
returns an empty string.
getColumnName in interface TableModelcolumn - the column being queried
columnpublic int findColumn(String columnName)
TableModel interface and is not used by the
JTable.
columnName - string containing name of column to be located
columnName, or -1 if not foundpublic Class<?> getColumnClass(int columnIndex)
Object.class regardless of columnIndex.
getColumnClass in interface TableModelcolumnIndex - the column being queried
public boolean isCellEditable(int rowIndex,
int columnIndex)
isCellEditable in interface TableModelrowIndex - the row being queriedcolumnIndex - the column being queried
TableModel.setValueAt(java.lang.Object, int, int)public void setValueAt(Object aValue, int rowIndex, int columnIndex)
setValueAt in interface TableModelaValue - value to assign to cellrowIndex - row of cellcolumnIndex - column of cellTableModel.getValueAt(int, int),
TableModel.isCellEditable(int, int)public void addTableModelListener(TableModelListener l)
addTableModelListener in interface TableModell - the TableModelListenerpublic void removeTableModelListener(TableModelListener l)
removeTableModelListener in interface TableModell - the TableModelListenerpublic TableModelListener[] getTableModelListeners()
TableModelListeners
or an empty
array if no table model listeners are currently registeredaddTableModelListener(javax.swing.event.TableModelListener),
removeTableModelListener(javax.swing.event.TableModelListener)public void fireTableDataChanged()
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.
public void fireTableStructureChanged()
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.
TableModelEvent,
EventListenerList
public void fireTableRowsInserted(int firstRow,
int lastRow)
[firstRow, lastRow], inclusive, have been inserted.
firstRow - the first rowlastRow - the last rowTableModelEvent,
EventListenerList
public void fireTableRowsUpdated(int firstRow,
int lastRow)
[firstRow, lastRow], inclusive, have been updated.
firstRow - the first rowlastRow - the last rowTableModelEvent,
EventListenerList
public void fireTableRowsDeleted(int firstRow,
int lastRow)
[firstRow, lastRow], inclusive, have been deleted.
firstRow - the first rowlastRow - the last rowTableModelEvent,
EventListenerList
public void fireTableCellUpdated(int row,
int column)
[row, column] has been updated.
row - row of cell which has been updatedcolumn - column of cell which has been updatedTableModelEvent,
EventListenerListpublic void fireTableChanged(TableModelEvent e)
TableModelListeners that registered
themselves as listeners for this table model.
e - the event to be forwardedaddTableModelListener(javax.swing.event.TableModelListener),
TableModelEvent,
EventListenerListpublic <T extends EventListener> T[] getListeners(Class<T> listenerType)
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:
listenerType - the type of listeners requested; this parameter
should specify an interface that descends from
java.util.EventListener
FooListeners on this component,
or an empty array if no such
listeners have been added
ClassCastException - if listenerType
doesn't specify a class or interface that implements
java.util.EventListenergetTableModelListeners()Ces informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
7 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)