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