/* ITI 1121/1521. Introduction to Computer Science II * Assignment/Devoir 3 * * */ public interface Operator { public abstract E apply( E a, E b ); }