01: package net.sf.jdec.jvminstructions.commandholders;
02:
03: import net.sf.jdec.jvminstructions.commands.Dload_3Command;
04: import net.sf.jdec.util.ExecutionState;
05:
06: public class DLoad_3 extends AbstractInstructionCommandHolder {
07:
08: protected String getName() {
09: return "DLoad_3";
10: }
11:
12: protected void registerCommand() {
13: setCommand(new Dload_3Command(ExecutionState.getMethodContext()));
14: }
15:
16: }
|