Package org.apache.bcel.generic
Class GOTO_W
- java.lang.Object
-
- org.apache.bcel.generic.Instruction
-
- org.apache.bcel.generic.BranchInstruction
-
- org.apache.bcel.generic.GotoInstruction
-
- org.apache.bcel.generic.GOTO_W
-
- All Implemented Interfaces:
java.lang.Cloneable,InstructionTargeter,UnconditionalBranch
public class GOTO_W extends GotoInstruction
GOTO_W - Branch always (to relative offset, not absolute address)
-
-
Field Summary
-
Fields inherited from class org.apache.bcel.generic.BranchInstruction
index, position, target
-
Fields inherited from class org.apache.bcel.generic.Instruction
EMPTY_ARRAY, length, opcode
-
-
Constructor Summary
Constructors Constructor Description GOTO_W()Empty constructor needed for Instruction.readInstruction.GOTO_W(InstructionHandle target)Constructs a GOTO_W instruction.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)Call corresponding visitor method(s).voiddump(java.io.DataOutputStream out)Dumps instruction as byte code to stream out.protected voidinitFromFile(ByteSequence bytes, boolean wide)Reads needed data (for example index) from file.-
Methods inherited from class org.apache.bcel.generic.BranchInstruction
containsTarget, dispose, getIndex, getPosition, getTarget, getTargetOffset, getTargetOffset, notifyTarget, setIndex, setPosition, setTarget, toString, updatePosition, updateTarget
-
Methods inherited from class org.apache.bcel.generic.Instruction
consumeStack, copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, setLength, setOpcode, toString, toString
-
-
-
-
Constructor Detail
-
GOTO_W
GOTO_W()
Empty constructor needed for Instruction.readInstruction. Not to be used otherwise.
-
GOTO_W
public GOTO_W(InstructionHandle target)
Constructs a GOTO_W instruction.- Parameters:
target- the target instruction.
-
-
Method Detail
-
accept
public void accept(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, that is, the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object.
-
dump
public void dump(java.io.DataOutputStream out) throws java.io.IOExceptionDumps instruction as byte code to stream out.- Overrides:
dumpin classBranchInstruction- Parameters:
out- Output stream.- Throws:
java.io.IOException- Thrown when an I/O exception of some sort has occurred.
-
initFromFile
protected void initFromFile(ByteSequence bytes, boolean wide) throws java.io.IOException
Reads needed data (for example index) from file.- Overrides:
initFromFilein classBranchInstruction- Parameters:
bytes- input stream.wide- wide prefix?- Throws:
java.io.IOException- may be thrown if the implementation needs to read data from the file- See Also:
InstructionList
-
-