// get the instruction arguments
final InsnConstOp methodInsn = (InsnConstOp)insn;
final ConstMethodRef methodRef = (ConstMethodRef)methodInsn.value();
final ConstClass declClass = methodRef.className();
final String declClassName = declClass.asString();
final ConstNameAndType methodNameAndType = methodRef.nameAndType();
final String methodName = methodNameAndType.name().asString();
final String methodType = methodNameAndType.signature().asString();
if (!methodName.startsWith("jdoSet")
&& (!methodName.startsWith("jdoGet")
|| methodName.equals("jdoGetManagedFieldCount"))) {
return NEGATIVE;