/** *

* Generic interface for function objects *

* @author Michael Schuresko * @version %I%, %G% * @since 1.1 */ public interface IFuncObj { public TypeOut doFunc(TypeIn in); }