JSR_Wpublic class JSR_W extends JsrInstruction JSR_W - Jump to subroutine |
Constructors Summary |
---|
JSR_W()Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction(). Not to be used otherwise.
| public JSR_W(InstructionHandle target)
super(com.sun.org.apache.bcel.internal.Constants.JSR_W, target);
length = 5;
|
Methods Summary |
---|
public void | accept(com.sun.org.apache.bcel.internal.generic.Visitor v)Call corresponding visitor method(s). The order is:
Call visitor methods of implemented interfaces first, then
call methods according to the class hierarchy in descending order,
i.e., the most specific visitXXX() call comes last.
v.visitStackProducer(this);
v.visitBranchInstruction(this);
v.visitJsrInstruction(this);
v.visitJSR_W(this);
| public void | dump(java.io.DataOutputStream out)Dump instruction as byte code to stream out.
index = getTargetOffset();
out.writeByte(opcode);
out.writeInt(index);
| protected void | initFromFile(com.sun.org.apache.bcel.internal.util.ByteSequence bytes, boolean wide)Read needed data (e.g. index) from file.
index = bytes.readInt();
length = 5;
|
|