Пример #1
0
 /**
  * Helper function to add a Super Column instance to this Super Column Family
  * @param PandraSuperColumn $scObj
  * @return PandraSuperColumn
  */
 public function addSuper(PandraSuperColumn $scObj)
 {
     $superName = $scObj->getName();
     $scObj->setParentCF($this);
     $this->_columns[$superName] = $scObj;
     return $this->getColumn($superName);
 }