KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > ejtools > deploy > factories > FactoryManagerService


1 package net.sourceforge.ejtools.deploy.factories;
2
3 import java.util.Iterator JavaDoc;
4
5 /**
6  * Description of the Class
7  *
8  * @author letiembl
9  * @created 13 décembre 2001
10  */

11 public interface FactoryManagerService
12 {
13    /** Description of the Method */
14    public void loadFactories();
15
16
17    /**
18     * Description of the Method
19     *
20     * @return Description of the Return Value
21     */

22    public Iterator JavaDoc listFactories();
23 }
24
Popular Tags