listType = self::TYPE_BULLET_FILLED; } /** * Set style value * * @param string $key * @param string $value */ public function setStyleValue($key, $value) { if (substr($key, 0, 1) == '_') { $key = substr($key, 1); } $this->$key = $value; } /** * Set List Type * * @param int $pValue */ public function setListType($pValue = self::TYPE_BULLET_FILLED) { $this->listType = $pValue; } /** * Get List Type */ public function getListType() { return $this->listType; } }