Oracle Fusion Middleware Java API Reference for Oracle TopLink (Deprecated)
11g Release 1 (11.1.1)

B32476-04

oracle.toplink.libraries.asm.tree
Class AbstractInsnNode

java.lang.Object
  extended by oracle.toplink.libraries.asm.tree.AbstractInsnNode
Direct Known Subclasses:
FieldInsnNode, IincInsnNode, InsnNode, IntInsnNode, JumpInsnNode, LdcInsnNode, LookupSwitchInsnNode, MethodInsnNode, MultiANewArrayInsnNode, TableSwitchInsnNode, TypeInsnNode, VarInsnNode

public abstract class AbstractInsnNode
extends java.lang.Object

A node that represents a bytecode instruction.


Method Summary
abstract  void accept(CodeVisitor cv)
          Makes the given code visitor visit this instruction.
 int getOpcode()
          Returns the opcode of this instruction.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getOpcode

public int getOpcode()
Returns the opcode of this instruction.

Returns:
the opcode of this instruction.

accept

public abstract void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.

Parameters:
cv - a code visitor.

Copyright © 1998, 2012, Oracle. All Rights Reserved.