*/
public static IRuntime createFor(final Instrumentation inst,
final String className, final String accessMethod,
final String dataField) throws ClassNotFoundException {
final boolean[] instrumented = new boolean[] { false };
final ClassFileTransformer transformer = new ClassFileTransformer() {
public byte[] transform(final ClassLoader loader,
final String name, final Class<?> classBeingRedefined,
final ProtectionDomain protectionDomain, final byte[] source)
throws IllegalClassFormatException {
if (name.equals(className)) {