|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.datatable.AbstractDataTable
public abstract class AbstractDataTable
This abstract data table implementation provides some default implementations for data
tables like listener handling. The method fireEvent()
can be used to promote
changes to all listeners.
In addition, IO methods are also provided by this abstract implementation.
Field Summary | |
---|---|
private java.util.List<DataTableListener> |
listeners
The list of data table listeners. |
Constructor Summary | |
---|---|
AbstractDataTable()
|
Method Summary | |
---|---|
void |
addDataTableListener(DataTableListener dataTableListener)
Adds a table listener listening for data changes. |
boolean |
containsMissingValues()
Returns true if this data table contains missing values. |
protected void |
fireEvent()
|
java.lang.String[] |
getColumnNames()
Returns an array of all column names. |
java.lang.String |
getValueAsString(DataTableRow row,
int column)
Must deliver the proper value as string, i.e. the mapped value for nominal columns. |
void |
removeDataTableListener(DataTableListener dataTableListener)
Removes the given listener from the list of data change listeners. |
void |
write(java.io.PrintWriter out)
Writes the table into the given writer. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.datatable.DataTable |
---|
add, getColumnIndex, getColumnName, getColumnWeight, getName, getNumberOfColumns, getNumberOfRows, getNumberOfSpecialColumns, getNumberOfValues, getRow, isNominal, isSpecial, isSupportingColumnWeights, iterator, mapIndex, mapString, sample |
Field Detail |
---|
private java.util.List<DataTableListener> listeners
Constructor Detail |
---|
public AbstractDataTable()
Method Detail |
---|
public java.lang.String[] getColumnNames()
DataTable
getColumnNames
in interface DataTable
public void addDataTableListener(DataTableListener dataTableListener)
DataTable
addDataTableListener
in interface DataTable
public void removeDataTableListener(DataTableListener dataTableListener)
DataTable
removeDataTableListener
in interface DataTable
protected void fireEvent()
public java.lang.String getValueAsString(DataTableRow row, int column)
DataTable
getValueAsString
in interface DataTable
public void write(java.io.PrintWriter out) throws java.io.IOException
DataTable
write
in interface DataTable
java.io.IOException
public boolean containsMissingValues()
DataTable
containsMissingValues
in interface DataTable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |