jellyj.classfile.classgen
Class INVOKESPECIAL

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

public class INVOKESPECIAL
extends CPInstruction

INVOKESPECIAL - Invoke instance method; special handling for superclass, private and instance initialization method invocations Stack: ..., objectref, [arg1, [arg2 ...]] -> ...

Author:
JellyJ Design Group

Constructor Summary
 (package private) INVOKESPECIAL()
          Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction().
 INVOKESPECIAL(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

INVOKESPECIAL

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

INVOKESPECIAL

public INVOKESPECIAL(int index)