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