package dxnCalc; public interface IBinOp { /** *Peform n1 "op" n2, and return the result. */ public abstract int compute(int n1, int n2); }