Class AbstractContainerTableColumnNameGenerator
- java.lang.Object
-
- adams.gui.visualization.container.AbstractContainerTableColumnNameGenerator
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DefaultContainerTableColumnNameGenerator
public abstract class AbstractContainerTableColumnNameGenerator extends Object implements Serializable
Abstract class for generating the column names of a table.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractContainerTableColumnNameGenerator()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract String
getData()
Returns the name of the column with the actual data in it.abstract String
getDatabaseID()
Returns the name of the column with the database ID in it.abstract int
getDatabaseIDWidth()
Returns the width of the database ID column.abstract int
getDataWidth()
Returns the width of the data column.abstract String
getVisibility()
Returns the name of the column with the visibility checkbox in it.abstract int
getVisibilityWidth()
Returns the width of the visibility column.
-
-
-
Method Detail
-
getVisibility
public abstract String getVisibility()
Returns the name of the column with the visibility checkbox in it.- Returns:
- the name
-
getVisibilityWidth
public abstract int getVisibilityWidth()
Returns the width of the visibility column.- Returns:
- the width
-
getDatabaseID
public abstract String getDatabaseID()
Returns the name of the column with the database ID in it.- Returns:
- the name
-
getDatabaseIDWidth
public abstract int getDatabaseIDWidth()
Returns the width of the database ID column.- Returns:
- the width
-
getData
public abstract String getData()
Returns the name of the column with the actual data in it.- Returns:
- the name
-
getDataWidth
public abstract int getDataWidth()
Returns the width of the data column.- Returns:
- the width
-
-