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 StringgetData()Returns the name of the column with the actual data in it.StringgetDatabaseID()Returns the name of the column with the database ID in it.intgetDatabaseIDWidth()Returns the width of the database ID column.intgetDataWidth()Returns the width of the data column.StringgetVisibility()Returns the name of the column with the visibility checkbox in it.intgetVisibilityWidth()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:
getVisibilityin classAbstractContainerTableColumnNameGenerator- Returns:
- the name
-
getVisibilityWidth
public int getVisibilityWidth()
Returns the width of the visibility column.- Specified by:
getVisibilityWidthin classAbstractContainerTableColumnNameGenerator- Returns:
- the width
-
getDatabaseID
public String getDatabaseID()
Returns the name of the column with the database ID in it.- Specified by:
getDatabaseIDin classAbstractContainerTableColumnNameGenerator- Returns:
- the name
-
getDatabaseIDWidth
public int getDatabaseIDWidth()
Returns the width of the database ID column.- Specified by:
getDatabaseIDWidthin classAbstractContainerTableColumnNameGenerator- Returns:
- the width
-
getData
public String getData()
Returns the name of the column with the actual data in it.- Specified by:
getDatain classAbstractContainerTableColumnNameGenerator- Returns:
- the name
-
getDataWidth
public int getDataWidth()
Returns the width of the data column.- Specified by:
getDataWidthin classAbstractContainerTableColumnNameGenerator- Returns:
- the width
-
-