* root directory for the lookup which represents the annotated output
* for the class specified. Return null if not found.
*/
public ClassFileSource lookupDestClass(String className) {
if (destClassPath == null && destinationDirectory != null)
destClassPath = new ClassPath(destinationDirectory.getPath());
return (destClassPath == null
? null : destClassPath.findClass(className));
}