/**
 * THE Task.java WRITEME...
 */
package com.tootsville.tootsbook.client.util.tasks;

/**
 * WRITEME: Document this type. twheys@gmail.com Mar 9, 2010
 * 
 * @author <a href="mailto:twheys@gmail.com@resinteractive.com">Tim Heys</a>
 * 
 */
public interface Task {
	/**
	 * <pre>
	 * twheys@gmail.com Mar 9, 2010
	 * </pre>
	 * 
	 * Execute the task.
	 * 
	 */
	public void execute ();
}
