.getAttributeLayout(AttributeLayout.ATTRIBUTE_SOURCE_FILE,
AttributeLayout.CONTEXT_CLASS);
if (SOURCE_FILE.matches(classBands.getClassFlags()[classNum])) {
String fileName = fullName.substring(i) + ".java";
classFile.attributes = new Attribute[] { (Attribute) cp
.add(new SourceFileAttribute(fileName)) };
} else {
classFile.attributes = new Attribute[] {};
}
// this/superclass
ClassFileEntry cfThis = cp.add(new CPClass(fullName));