int flags = fields[i].getAccessFlags();
Attribute[] attributes = fields[i].getAttributes();
for (int j = 0; j < attributes.length; j++) {
if (attributes[j] instanceof ConstantValue) {
flags |= (1<<17);
ConstantValue constV = ((ConstantValue)attributes[j]);
Constant theConstant = constV.getConstantPool().getConstant(constV.getConstantValueIndex());
CPConstant cpConstant = cpBands.getCPConstant(theConstant, constV.getConstantPool());
fieldConstantValueKQ.add(cpConstant);
} else if (attributes[j] instanceof Signature) {
flags |= (1<<19);
fieldSignature.add(cpBands.getCPSignature(((Signature)attributes[j]).getSignature()));
} else if (attributes[j] instanceof Deprecated) {