Eccube\Entity\Product::setDescriptionList PHP Method

setDescriptionList() public method

Set description_list
public setDescriptionList ( string $descriptionList ) : Product
$descriptionList string
return Product
    public function setDescriptionList($descriptionList)
    {
        $this->description_list = $descriptionList;
        return $this;
    }

Usage Example

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