FileDocCategorySizeDatePackage
AbstractInsnNode.javaAPI DocGlassfish v2 API2528Thu Mar 02 11:51:14 GMT 2006oracle.toplink.libraries.asm.tree

AbstractInsnNode

public abstract class AbstractInsnNode extends Object
A node that represents a bytecode instruction.
author
Eric Bruneton

Fields Summary
protected int
opcode
The opcode of this instruction.
Constructors Summary
protected AbstractInsnNode(int opcode)
Constructs a new {@link AbstractInsnNode AbstractInsnNode} object.

param
opcode the opcode of the instruction to be constructed.

    this.opcode = opcode;
  
Methods Summary
public abstract voidaccept(oracle.toplink.libraries.asm.CodeVisitor cv)
Makes the given code visitor visit this instruction.

param
cv a code visitor.

public intgetOpcode()
Returns the opcode of this instruction.

return
the opcode of this instruction.

    return opcode;