Example usage for org.objectweb.asm.util CheckFieldAdapter CheckFieldAdapter

List of usage examples for org.objectweb.asm.util CheckFieldAdapter CheckFieldAdapter

Introduction

In this page you can find the example usage for org.objectweb.asm.util CheckFieldAdapter CheckFieldAdapter.

Prototype

public CheckFieldAdapter(final FieldVisitor fieldVisitor) 

Source Link

Document

Constructs a new CheckFieldAdapter .

Usage

From source file:org.jvnet.jax_ws_commons.beans_generator.ambassador.impl.asm.ASMUtil.java

License:Open Source License

public static FieldVisitor wrapIntoCheckedVisitor(FieldVisitor visitor) {
    return new CheckFieldAdapter(visitor);
}