Ejemplo n.º 1
0
 /**
  * Retrieves the generic information.
  *
  * Finds out whether this class is abstract and/or final on top of the information found using the
  * DocBlox_Reflection_Interface parent method.
  *
  * @param DocBlox_Token_Iterator $tokens
  *
  * @see DocBlox_Reflection_Interface::processGenericInformation
  *
  * @return void
  */
 protected function processGenericInformation(DocBlox_Token_Iterator $tokens)
 {
     // retrieve generic information about the class
     $this->abstract = $this->findAbstract($tokens) ? true : false;
     $this->final = $this->findFinal($tokens) ? true : false;
     parent::processGenericInformation($tokens);
 }