/**
  * Constructor: Associates to $table $this observer
  *
  * @param   JTable  $table  Table to be observed
  *
  * @since   3.1.2
  */
 public function __construct(JTable $table)
 {
     $table->attachObserver($this);
     $this->table = $table;
 }