KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jicengine > operation > Factory


1 package org.jicengine.operation;
2
3 /**
4  * <p>
5  * An executable unit similar to Operation except that the Factory receives
6  * unnamed arguments, whereas an Operation retrieves its parameters from the
7  * context by name.
8  * </p>
9  *
10  *
11  * @author timo laitinen
12  */

13
14 public interface Factory {
15
16     public Object JavaDoc invoke(Object JavaDoc[] arguments) throws OperationException;
17
18 }
19
Popular Tags