aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/modules/Module.java
blob: 7efbf3acf14a77f5f7812ba2923a83aaf3dd9997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package jcgp.backend.modules;

import jcgp.backend.resources.parameters.Parameter;

/**
 * This interface defines the expected behaviour of a module. Specifically, a module
 * is expected to be able to return a list of local parameters. When a user interface
 * is used, it is expected to display the parameters of each module and allow user
 * interaction for parameters which are not monitors.
 * 
 * @see Parameter
 * 
 * @author Eduardo Pedroni
 *
 */
public interface Module {
	
	/**
	 * @return a list of generic parameters exposed by the module.
	 */
	public abstract Parameter<?>[] getLocalParameters();
	
}