Example #1
0
 /**
  * @see ProjectComponent::setProject()
  */
 public function setProject(Project $project)
 {
     parent::setProject($project);
     $this->fileset->setProject($project);
 }
 /**
  * Initializes this task.
  */
 public function init()
 {
     parent::init();
     $this->defaultValue = "";
     $this->promptCharacter = "?";
     $this->useExistingValue = false;
 }
 /**
  *  Get the name of the task to use in logging messages.
  *
  *  @return  string  The task's name
  */
 function getTaskName()
 {
     return $this->realThing === null ? parent::getTaskName() : $this->realThing->getTaskName();
 }