. */ /** * Abstract interface for objects which can contain tasks (targets) * Used to check if a class can contain tasks (via instanceof) * * @author Andreas Aderhold * @copyright © 2001,2002 THYRELL. All rights reserved * @version $Revision: 1.5 $ $Date: 2005/10/04 19:13:44 $ * @access public * @package phing */ interface TaskContainer { /** * Adds a task to this task container. Must be implemented * by derived class * * @param object The task to be added to the container * @access public */ function addTask(Task $task); }