Package com.pixelmed.dicom
Class AttributeListTableModel
- java.lang.Object
-
- javax.swing.table.AbstractTableModel
-
- com.pixelmed.dicom.AttributeListTableModel
-
- All Implemented Interfaces:
java.io.Serializable,javax.swing.table.TableModel
- Direct Known Subclasses:
AttributeListFunctionalGroupsTableModel
public class AttributeListTableModel extends javax.swing.table.AbstractTableModelThe
AttributeListTableModelclass extends aAbstractTableModelto abstract the contents of a list of attributes as a single row table in order to provide support for aAttributeListTableBrowser.For details of some of the methods implemented here see
javax.swing.table.AbstractTableModel.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected intcolumnCountprotected java.lang.String[]columnNamesprotected java.lang.Object[][]dataprotected java.util.HashSetexcludeListprotected java.util.HashSetincludeListprotected introwCount
-
Constructor Summary
Constructors Constructor Description AttributeListTableModel()Construct an empty table model.AttributeListTableModel(AttributeList list)Construct the table model from an attribute list.AttributeListTableModel(AttributeList list, java.util.HashSet includeList, java.util.HashSet excludeList)Construct the table model from an attribute list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetColumnCount()java.lang.StringgetColumnName(int col)intgetRowCount()java.lang.ObjectgetValueAt(int row, int col)voidinitializeModelFromAttributeList(AttributeList list)Populate the table model from an attribute list.protected booleanisAcceptable(java.util.HashSet includeList, java.util.HashSet excludeList, AttributeTag t, byte[] vr)Is an attribute acceptable for inclusion?booleanisCellEditable(int row, int col)-
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getListeners, getTableModelListeners, removeTableModelListener, setValueAt
-
-
-
-
Constructor Detail
-
AttributeListTableModel
public AttributeListTableModel()
Construct an empty table model.
-
AttributeListTableModel
public AttributeListTableModel(AttributeList list)
Construct the table model from an attribute list.
- Parameters:
list- the list of attributes whose values to use
-
AttributeListTableModel
public AttributeListTableModel(AttributeList list, java.util.HashSet includeList, java.util.HashSet excludeList)
Construct the table model from an attribute list.
- Parameters:
list- the list of attributes whose values to useincludeList- attributes to includeexcludeList- attributes to exclude
-
-
Method Detail
-
isAcceptable
protected boolean isAcceptable(java.util.HashSet includeList, java.util.HashSet excludeList, AttributeTag t, byte[] vr)Is an attribute acceptable for inclusion?
Attributes with a VR of SQ, OB, OW and private tags are always excluded.
- Parameters:
includeList- the list of attributes to includeexcludeList- the list of attributes to excludet- the tag of the attribute to testvr- the VR of the attribute to test- Returns:
- true if attribute is acceptable for inclusion
-
initializeModelFromAttributeList
public void initializeModelFromAttributeList(AttributeList list)
Populate the table model from an attribute list.
- Parameters:
list- the attributes whose values to use
-
getColumnCount
public int getColumnCount()
-
getRowCount
public int getRowCount()
-
getValueAt
public java.lang.Object getValueAt(int row, int col)
-
isCellEditable
public boolean isCellEditable(int row, int col)- Specified by:
isCellEditablein interfacejavax.swing.table.TableModel- Overrides:
isCellEditablein classjavax.swing.table.AbstractTableModel
-
getColumnName
public java.lang.String getColumnName(int col)
- Specified by:
getColumnNamein interfacejavax.swing.table.TableModel- Overrides:
getColumnNamein classjavax.swing.table.AbstractTableModel
-
-