Methods Summary |
---|
public int | getColumnCount()
return 2;
|
public java.lang.String | getColumnName(int column)
return column == 0 ? "Operation" : "Duration (ms)";
|
public int | getRowCount()
return profiles == null ? 0 : profiles.length;
|
public java.lang.Object | getValueAt(int row, int column)
if (profiles == null) return "";
if (column == 0) {
return NAMES[row];
}
return formatter.format(profiles[row]) + "";
|
public boolean | isCellEditable(int arg0, int arg1)
return false;
|
public void | setValueAt(java.lang.Object arg0, int arg1, int arg2)
|