01: package net.sf.jdec.jvminstructions.commandholders;
02:
03: import net.sf.jdec.jvminstructions.commands.IConst_0Command;
04: import net.sf.jdec.util.ExecutionState;
05:
06: public class IConst_0 extends AbstractInstructionCommandHolder {
07:
08: protected void registerCommand() {
09: setCommand(new IConst_0Command(ExecutionState
10: .getMethodContext()));
11: }
12: }
|