m.getArgumentTypes().length == 0){
ConstantPoolGen cpg = c.getValue().getConstantPool();
MethodGen mg = new MethodGen(m, c.getValue().getClassName(), cpg);
InstructionList il = mg.getInstructionList();
InstructionFinder f = new InstructionFinder(il);
Iterator e = f.search("INVOKEVIRTUAL CHECKCAST GETFIELD ASTORE ALOAD GETFIELD IFEQ");
if(e.hasNext()){
InstructionHandle[] handles = (InstructionHandle[]) e.next();
String getHits = ((GETFIELD) handles[5].getInstruction()).getFieldName(cpg);
InstructionSearcher iS = new InstructionSearcher(il, cpg);
iS.nextGETSTATIC();