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