Methods Summary |
---|
public long | getTimestamp()
return timestamp;
|
public boolean | isBusy()
return busy;
|
public boolean | isEnlisted()
return enlisted;
|
public boolean | isFree()
return !busy;
|
public boolean | isUnenlisted()
return !enlisted;
|
public void | setBusy(boolean busy)
this.busy = busy;
|
public void | setEnlisted(boolean enlisted)
this.enlisted = enlisted;
|
public java.lang.String | toString()
return "Enlisted :" + enlisted + " Busy :" + busy;
|
public void | touchTimestamp()
timestamp = System.currentTimeMillis();
|