Class DefaultContainerTableColumnNameGenerator
- java.lang.Object
-
- adams.gui.visualization.container.AbstractContainerTableColumnNameGenerator
-
- adams.gui.visualization.container.DefaultContainerTableColumnNameGenerator
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InstanceContainerTableColumnNameGenerator
,ReportContainerTableColumnNameGenerator
,SpreadSheetRowContainerTableColumnNameGenerator
,TimeseriesContainerTableColumnNameGenerator
,XYSequenceTableColumnNameGenerator
public class DefaultContainerTableColumnNameGenerator extends AbstractContainerTableColumnNameGenerator
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 DefaultContainerTableColumnNameGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getData()
Returns the name of the column with the actual data in it.String
getDatabaseID()
Returns the name of the column with the database ID in it.int
getDatabaseIDWidth()
Returns the width of the database ID column.int
getDataWidth()
Returns the width of the data column.String
getVisibility()
Returns the name of the column with the visibility checkbox in it.int
getVisibilityWidth()
Returns the width of the visibility column.
-
-
-
Method Detail
-
getVisibility
public String getVisibility()
Returns the name of the column with the visibility checkbox in it.- Specified by:
getVisibility
in classAbstractContainerTableColumnNameGenerator
- Returns:
- the name
-
getVisibilityWidth
public int getVisibilityWidth()
Returns the width of the visibility column.- Specified by:
getVisibilityWidth
in classAbstractContainerTableColumnNameGenerator
- Returns:
- the width
-
getDatabaseID
public String getDatabaseID()
Returns the name of the column with the database ID in it.- Specified by:
getDatabaseID
in classAbstractContainerTableColumnNameGenerator
- Returns:
- the name
-
getDatabaseIDWidth
public int getDatabaseIDWidth()
Returns the width of the database ID column.- Specified by:
getDatabaseIDWidth
in classAbstractContainerTableColumnNameGenerator
- Returns:
- the width
-
getData
public String getData()
Returns the name of the column with the actual data in it.- Specified by:
getData
in classAbstractContainerTableColumnNameGenerator
- Returns:
- the name
-
getDataWidth
public int getDataWidth()
Returns the width of the data column.- Specified by:
getDataWidth
in classAbstractContainerTableColumnNameGenerator
- Returns:
- the width
-
-