_get(self::ATTRIBUTE_ID); } /** * Set id of the attribute. * * @param string $attributeId * @return $this */ public function setAttributeId($attributeId) { return $this->setData(self::ATTRIBUTE_ID, $attributeId); } /** * Retrieve code of the attribute. * * @return string|null */ public function getAttributeCode() { return $this->_get(self::ATTRIBUTE_CODE); } /** * Set code of the attribute. * * @param string $attributeCode * @return $this */ public function setAttributeCode($attributeCode) { return $this->setData(self::ATTRIBUTE_CODE, $attributeCode); } }