package bluej.groupwork;
import threadchecker.OnThread;
import threadchecker.Tag;
| Interface for listening for results from a status command.
|
| @author Davin McCall
|
public interface StatusListener
{
| Status is available for a file.
|
@OnThread(Tag.Worker)
public void gotStatus(TeamStatusInfo info);
| The status operation is complete. A status handle is provided
| to allow commit operations.
|
@OnThread(Tag.Worker)
public void statusComplete(StatusHandle statusHandle);
}
top,
use,
map,
interface StatusListener
. gotStatus
. statusComplete
16 neLoCode
+ 5 LoComm