com.benfante.splasher.task
Interface TaskObserver

All Known Implementing Classes:
SimpleSplashManager

public interface TaskObserver

Interface that must be implemented by the task observers.

Version:
$Id: TaskObserver.java,v 1.1.1.1 2006-04-01 05:41:35 lucio Exp $
Author:
Lucio Benfante lucio@benfante.com

Method Summary
 void notifyAdd(Task task)
          This method will be called when an observer is added to a task.
 void update(Task task)
          This method will be called when a task notify changes to the observer.
 

Method Detail

notifyAdd

void notifyAdd(Task task)
This method will be called when an observer is added to a task.

Parameters:
task - The task that is adding the observer.

update

void update(Task task)
This method will be called when a task notify changes to the observer.

Parameters:
task - The task notifying the changes.