All Packages Class Hierarchy This Package Previous Next Index
Class espresso.classfile.classgen.BIPUSH
java.lang.Object
|
+----espresso.classfile.classgen.Instruction
|
+----espresso.classfile.classgen.BIPUSH
- public class BIPUSH
- extends Instruction
BIPUSH - Push byte
Stack: ... -> ..., value
-
b
-
-
BIPUSH()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction().
-
BIPUSH(byte)
-
-
dump(DataOutputStream)
- Dump instruction as byte code to stream out.
-
initFromFile(ByteSequence, boolean)
- Read needed data (e.g.
-
toString()
-
b
private byte b
BIPUSH
BIPUSH()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction(). Not to be used otherwise.
BIPUSH
public BIPUSH(byte b)
dump
public void dump(DataOutputStream out) throws IOException
- Dump instruction as byte code to stream out.
- Overrides:
- dump in class Instruction
toString
public String toString()
- Returns:
- mnemonic for instruction
- Overrides:
- toString 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
All Packages Class Hierarchy This Package Previous Next Index