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