* @param aCurrentClass
* Name of the current class being reverse engineered.
*
*/
private void createTree(ClassInfo aClassInfo, String aCurrentClass) {
Import mImports = aClassInfo.getConstantPool().getImportedClasses();
int dotIndex = aCurrentClass.indexOf(".");
if (dotIndex != -1) {
aCurrentClass = aCurrentClass.substring(0, dotIndex);
}