/**
  * used to configure object with database's data options
  *
  * @access protected
  *
  */
 protected function configureProperties()
 {
     if (!parent::configureProperties()) {
         return false;
     }
     //fifth character
     $this->boxPosition = $this->tipo[4];
     return true;
 }
 /**
  * used to configure object with database's data options
  *
  * @access protected
  *
  */
 protected function configureProperties()
 {
     if (!parent::configureProperties()) {
         return false;
     }
     //fifth character
     $this->exerciseVariation = $this->tipo[4];
     $this->apostrophe = $this->tipo[5];
     return true;
 }
 /**
  * used to configure object with database's data options
  *
  * @access protected
  *
  */
 protected function configureProperties()
 {
     if (!parent::configureProperties()) {
         return false;
     }
     //fifth character
     switch ($this->tipo[4]) {
         default:
         case ADA_NORMAL_SELECT_TEST:
             $this->synonym = false;
             break;
         case ADA_SYNONYM_SELECT_TEST:
             $this->synonym = true;
             break;
     }
     return true;
 }