packages.add(key.packageName);
}
// Parse the methods after adding the class to avoid recursion
cb.parse();
// See if there are other classes which should be looked at
QMFSeeAlso seeAlso = (QMFSeeAlso) cls
.getAnnotation(QMFSeeAlso.class);
if (seeAlso != null)
{
for (Class seeAlsoCls : seeAlso.value())
{
this.register(seeAlsoCls);
}
}
}