ConstantPoolGen cpg = c.getValue().getConstantPool();
MethodGen gen = new MethodGen(m,c.getValue().getClassName(),cpg);
InstructionList il = gen.getInstructionList();
if (il == null) continue;
InstructionFinder f = new InstructionFinder(il);
Iterator e = f.search("BASTORE GETSTATIC ILOAD ILOAD ILOAD ILOAD INVOKEVIRTUAL");
if (e.hasNext()) {
InstructionHandle[] handles = (InstructionHandle[]) e.next();
String curtoolkit = ((GETSTATIC)handles[1].getInstruction()).getClassName(cpg) + "." + ((GETSTATIC)handles[1].getInstruction()).getFieldName(cpg);
String toolkit = ((GETSTATIC)handles[1].getInstruction()).getSignature(cpg).replaceAll("L|;","");
data.addClass("Toolkit", toolkit);