MethodGen mg = new MethodGen(m, cg.getClassName(), cpg);
InstructionList il = mg.getInstructionList();
if(il != null){
InstructionSearcher2 iS = new InstructionSearcher2(cg, m, il);
if(iS.nextLDC("gnp2 pos:") != null){
FieldInstruction fi = iS.nextFieldInstruction();
data.addField("NPCCount", fi.getClassName(cpg)+'.'+fi.getFieldName(cpg));
return SearchResult.Success;
}
}
}