Package pal.misc
Interface TableReport
-
- All Known Subinterfaces:
CharacterAlignment
- All Known Implementing Classes:
LinkageDisequilibrium
,SimpleCharacterAlignment
public interface TableReport
interface for classes with data that can be presented in tables- Version:
- $Id: TableReport.java,v 1.3 2001/11/20 19:58:45 alexi Exp $
- Author:
- Ed Buckler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object[]
getTableColumnNames()
get the names of the columnsjava.lang.Object[][]
getTableData()
get the data elementsjava.lang.String
getTableTitle()
get the title of the table
-
-
-
Method Detail
-
getTableColumnNames
java.lang.Object[] getTableColumnNames()
get the names of the columns- Returns:
- columns names
-
getTableData
java.lang.Object[][] getTableData()
get the data elements- Returns:
- the data elements
-
getTableTitle
java.lang.String getTableTitle()
get the title of the table- Returns:
- a String title
-
-