/** * <copyright> * </copyright> * * */ package robot.resource.robot; /** * A simple interface for generic functions with one argument. */ public interface IRobotFunction1<ReturnType, ArgumentType1> { public ReturnType execute(ArgumentType1 argument1); }