// Only munge one type!
if (!gen.getType().equals(cflowCounterField.getDeclaringType())) return false;
// Create the field declaration.
// Something like: "public static final CflowCounter ajc$cflowCounter$0;"
Field f = new FieldGen(cflowCounterField.getModifiers(),
BcelWorld.makeBcelType(cflowCounterField.getReturnType()),
cflowCounterField.getName(),
gen.getConstantPoolGen()).getField();
gen.addField(f,getSourceLocation());