- Common ways to obtain FieldInsnNode
private void myMethod () {FieldInsnNode f =
String owner;String name;String descriptor;new FieldInsnNode(opcode, owner, name, descriptor)
- Smart code suggestions by Codota
}
@Override public AbstractInsnNode clone(final Map<LabelNode, LabelNode> clonedLabels) { return new FieldInsnNode(opcode, owner, name, desc).cloneAnnotations(this); } }
@Override public AbstractInsnNode clone(final Map<LabelNode, LabelNode> labels) { return new FieldInsnNode(opcode, owner, name, desc) .cloneAnnotations(this); } }