aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/modules/Module.java
blob: 9e0b267da2303443347b158e94d209364f2bc686 (plain)
1
2
3
4
5
6
7
8
9
10
11
package jcgp.modules;

import java.util.HashMap;

import jcgp.JCGP.Resources;
import jcgp.parameters.Parameter;

public interface Module {
	public HashMap<String, Parameter> getLocalParameters();
	public ModuleStatus getStatus(Resources resources);
}