00001 package de.fub.bytecode.generic;
00002
00003 import java.io.*;
00004 import de.fub.bytecode.util.ByteSequence;
00005
00006
00007
00008
00009
00010
00011
00012 public class GOTO_W extends BranchInstruction implements UnconditionalBranch {
00013
00014
00015
00016
00017 GOTO_W() {}
00018 public GOTO_W(InstructionHandle target) {
00019 super(de.fub.bytecode.Constants.GOTO_W, target);
00020 length = 5;
00021 }
00022
00023
00024
00025
00026
00027
00028
00029
00030 public void accept(Visitor v) {
00031 v.visitUnconditionalBranch(this);
00032 v.visitInstructionTargeter(this);
00033 v.visitBranchInstruction(this);
00034 v.visitGOTO_W(this);
00035 }
00036
00037
00038
00039
00040 public void dump(DataOutputStream out) throws IOException {
00041 index = getTargetOffset();
00042 out.writeByte(tag);
00043 out.writeInt(index);
00044 }
00045
00046
00047
00048 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException
00049 {
00050 index = bytes.readInt();
00051 length = 5;
00052 }
00053 }