jellyj.classfile.classgen
Class INVOKEVIRTUAL

jellyj.classfile.classgen.Instruction
  |
  +--jellyj.classfile.classgen.CPInstruction
        |
        +--jellyj.classfile.classgen.INVOKEVIRTUAL

public class INVOKEVIRTUAL
extends CPInstruction

INVOKEVIRTUAL - Invoke instance method; dispatch based on class Stack: ..., objectref, [arg1, [arg2 ...]] -> ...

Author:
JellyJ Design Group

Constructor Summary
 (package private) INVOKEVIRTUAL()
          Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction().
 INVOKEVIRTUAL(int index)
           

Methods inherited from class jellyj.classfile.classgen.CPInstruction
dump, getIndex, setIndex, toString

Methods inherited from class jellyj.classfile.classgen.Instruction
consumeStack, copy, getLength, getPosition, getTag, produceStack, readInstruction, setPosition

Constructor Detail

INVOKEVIRTUAL

INVOKEVIRTUAL()
Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction(). Not to be used otherwise.

INVOKEVIRTUAL

public INVOKEVIRTUAL(int index)