final String identifier = ((String)deQ).substring(start+1);
String command = ((String)deQ).substring(0, start);
int activeRow = currentRow == null ? 0 : currentRow.intValue();
if(command.equals("start")) {
currentRow = ((auctionTableModel)getModel()).findRow(new Comparison() {
public boolean match(Object o) {
String foundIdentifier = null;
if(o != null) foundIdentifier = ((AuctionEntry)o).getIdentifier();
return foundIdentifier != null && foundIdentifier.equals(identifier);
}