/**
  * Declares an association between this object and a ChildInput object.
  *
  * @param  ChildInput $v
  * @return $this|\Jalle19\StatusManager\Database\InputError The current object (for fluent API support)
  * @throws PropelException
  */
 public function setInput(ChildInput $v = null)
 {
     if ($v === null) {
         $this->setInputUuid(NULL);
     } else {
         $this->setInputUuid($v->getUuid());
     }
     $this->aInput = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildInput object, it will not be re-added.
     if ($v !== null) {
         $v->addInputError($this);
     }
     return $this;
 }