. */ /** * Condition interface specification: * * Each condition must implement a method applying to this prototye: * * @author Hans Lellelid * @version $Id$ * @package phing.tasks.system.condition */ interface Condition { /** * @return boolean * @throws BuildException */ public function evaluate(); }