_attributeCode = $attribute; return $this; } /** * Set Eav entity attribute type * * @param string $part * @return $this * @codeCoverageIgnore */ public function setPart($part) { $this->_part = $part; return $this; } /** * Retrieve Eav entity attribute * * @return string * @codeCoverageIgnore */ public function getAttributeCode() { return $this->_attributeCode; } /** * Retrieve Eav entity attribute part * * @return string * @codeCoverageIgnore */ public function getPart() { return $this->_part; } }