//7 is the character *2* after the "t", because
//there's expected to be a space or tab there.
//We want to eliminate the final dot, class name
//and ending semicolon;
ssbLine.trim();
ssbLine.delete(0, "import".length());
ssbLine.trim();
ssbLine.deleteCharAt(ssbLine.length() - ";".length());
String sFQImportClass = ssbLine.toString();
String sFQImportPkg = ssbLine.substring(0, sFQImportClass.lastIndexOf(sPD));