public function __construct()
 {
     parent::__construct();
     $this->set_attribute_str('id', 'reorder_rows');
     $this->column_titles = array();
     $this->row_data = array();
 }
 public function __construct(Oedipus_Frame $frame)
 {
     parent::__construct();
     $this->set_attribute_str('class', 'oedipus');
     $this->frame = $frame;
     $this->characters = $frame->get_characters();
 }
 public function __construct(Oedipus_Table $table, $edit_mode = TRUE)
 {
     parent::__construct();
     $this->set_attribute_str('class', 'oedipus');
     $this->edit_mode = $edit_mode;
     $this->table = $table;
     $this->actors = $table->get_actors();
 }