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