/**
  * Fügt der Liste eine Spalte hinzu.
  * 
  * @param object Spaltenobjekt das hinzugefügt werden soll
  * @access public
  */
 function addColumn(&$column)
 {
     if (!rexListColumn::isValid($column)) {
         trigger_error('rexList: Unexpected type "' . gettype($column) . '" for $column! Expecting "rexlistcolumn"-object.', E_USER_ERROR);
     }
     $column->rexlist =& $this;
     $this->columns[] =& $column;
 }