package com.coderising.jvm.cmd; import com.coderising.jvm.clz.ClassFile; import com.coderising.jvm.constant.ConstantPool; public class GetStaticFieldCmd extends TwoOperandCmd{ protected GetStaticFieldCmd(ClassFile clzFile, String opCode) { super(clzFile, opCode); } @Override public String toString(ConstantPool pool) { return super.getOperandAsField(pool); } }