1 package mobisnap.common;
2
3 /***
4 * This interface represents a generic factory
5 *
6 * @version 0.045 12-Dec-2000
7 * @author Nuno Pregui�a
8 */
9 public interface MobisnapFactory
10 {
11 /***
12 * Returns the an object implementation that must take into consideration
13 * the given properties
14 *
15 * @param props Properties to tailor object implementation returned by this factory.
16 */
17 public Object getImplementation( java.util.Properties props);
18 }
This page was automatically generated by Maven