Changeset 733

Show
Ignore:
Timestamp:
06/13/07 16:47:25 (1 year ago)
Author:
mikey
Message:

added a convenience method to stubReflectionPackage

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionPackage.php

    r700 r733  
    102102 
    103103    /** 
     104     * returns a list of all class names within the package 
     105     * 
     106     * @param   bool           $recursive  optional  true if classes of subpackages should be included 
     107     * @return  array<string> 
     108     */ 
     109    public function getClassNames($recursive = false) 
     110    { 
     111        return stubClassLoader::getClassNames($this->packageName, $recursive); 
     112    } 
     113 
     114    /** 
    104115     * returns a list of all classes within the package 
    105116     *