/**
  * @public
  * @brief Constructor.
  * @param $name string - A name of this property.
  */
 function XCube_AbstractProperty($name)
 {
     parent::XCube_PropertyInterface($name);
     $this->mName = $name;
 }