All Packages Class Hierarchy This Package Previous Next Index
Class espresso.classfile.classgen.IINC
java.lang.Object
|
+----espresso.classfile.classgen.Instruction
|
+----espresso.classfile.classgen.IINC
- public class IINC
- extends Instruction
IINC - Increment local variable by constant
-
c
-
-
n
-
-
wide
-
-
IINC()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction().
-
IINC(int, int)
-
-
dump(DataOutputStream)
- Dump instruction as byte code to stream out.
-
initFromFile(ByteSequence, boolean)
- Read needed data (e.g.
-
toString()
-
wide
private boolean wide
n
private int n
c
private int c
IINC
IINC()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction(). Not to be used otherwise.
IINC
public IINC(int n,
int c)
dump
public void dump(DataOutputStream out) throws IOException
- Dump instruction as byte code to stream out.
- Parameters:
- out - Output stream
- Overrides:
- dump in class Instruction
initFromFile
protected void initFromFile(ByteSequence bytes,
boolean wide) throws IOException
- Read needed data (e.g. index) from file.
- Overrides:
- initFromFile in class Instruction
toString
public String toString()
- Returns:
- mnemonic for instruction
- Overrides:
- toString in class Instruction
All Packages Class Hierarchy This Package Previous Next Index