Skip to content

Commit

Permalink
Add description getter and javadoc in GATKReportTable (#5443)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber authored and cmnbroad committed Nov 26, 2018
1 parent 46cd10f commit 3941772
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,22 +558,41 @@ else if ( info.getDataType().equals(GATKReportDataType.Unknown) && (obj instance
out.println();
}

/**
* @return The number of rows in this table
*/
public int getNumRows() {
return underlyingData.size();
}

/**
* @return The number of columns in this table
*/
public int getNumColumns() {
return columnInfo.size();
}

/**
* @return A list of GATKReportColumn objects describing this table
*/
public List<GATKReportColumn> getColumnInfo() {
return columnInfo;
}

/**
* @return The name of this table
*/
public String getTableName() {
return tableName;
}

/**
* @return The description for this table
*/
public String getTableDescription() {
return tableDescription;
}

/**
* Concatenates the rows from the table to this one
*
Expand Down

0 comments on commit 3941772

Please sign in to comment.