info.setProficiency(TableColumnInfo.PROFICIENCY_BEGINNER);
}
// @see org.gudy.azureus2.plugins.ui.tables.TableCellRefreshListener#refresh(org.gudy.azureus2.plugins.ui.tables.TableCell)
public void refresh(TableCell cell) {
TranscodeFile tf = (TranscodeFile) cell.getDataSource();
if (tf == null) {
return;
}
TranscodeJob job = tf.getJob();
long value;
if (job == null) {
try {
value = Integer.MAX_VALUE + tf.getCreationDateMillis() + 1;
} catch (Throwable t) {
value = Integer.MAX_VALUE + 1L;
}
} else {
value = job.getIndex();