Eccube\Entity\Product::setNote PHP Method

setNote() public method

Set note
public setNote ( string $note ) : Product
$note string
return Product
    public function setNote($note)
    {
        $this->note = $note;
        return $this;
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function setNote($note)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNote', array($note));
     return parent::setNote($note);
 }