1 /***
2 * Function.java
3 *
4 * $Author: mballesteros $
5 * $Date: 2003/11/28 19:18:03 $
6 * $Revision: 1.1 $
7 */
8 package net.sf.jec;
9
10 /*** A function is a map between objects.
11 *
12 * @author mballesteros
13 */
14 public abstract class Function {
15
16 /*** Direct map: the direct conversion
17 * @param object The arguments array
18 * @return The result object after applying the map
19 */
20 public abstract Object directMap(Object object[]);
21
22 /*** Inverse map: the inverse conversion
23 * @param object The arguments array
24 * @return The result object after applying the inverse map
25 */
26 public abstract Object inverseMap(Object object[]);
27 }
This page was automatically generated by Maven