/**
  * Constructor
  *
  * sets the class name and calls the constructor of the reflectionClass
  *
  * @param string The class name
  * @return void
  */
 public function __construct($classname)
 {
     $this->classname = $classname;
     parent::__construct($classname);
     $this->parseComment();
 }