java/parameter-lister/src/info/glogalcode/parameterLister/OutputModuleFactory.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 10 Sep 2016 23:03:43 +0200
changeset 21 7d86d90e6e0e
child 28 bfef9f34e438
permissions -rw-r--r--
Java version (some old source code)
franta-hg@21
     1
package info.glogalcode.parameterLister;
franta-hg@21
     2
franta-hg@21
     3
/**
franta-hg@21
     4
 *
franta-hg@21
     5
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@21
     6
 */
franta-hg@21
     7
public interface OutputModuleFactory {
franta-hg@21
     8
franta-hg@21
     9
	public OutputModule createModule() throws OutputModuleFactoryException;
franta-hg@21
    10
franta-hg@21
    11
	public String getName();
franta-hg@21
    12
franta-hg@21
    13
}