_listContent = $listContent; $this->_ordering = $ordering; } // // Getters and Setters // /** * Set the list content * @param $listContent string */ function setListContent(&$listContent) { $this->_listContent =& $listContent; } /** * Get the list content * @return string */ function &getListContent() { return $this->_listContent; } /** * Set the ordering * @param $ordering integer */ function setOrdering($ordering) { $this->_ordering = $ordering; } /** * Get the ordering * @return integer */ function getOrdering() { return $this->_ordering; } } ?>