All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.uniroma2.art.coda.interfaces.ProjectionRulesDeciderInterface Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package it.uniroma2.art.coda.interfaces;


import it.uniroma2.art.coda.structures.SelectedProjectionRules;

/**
 * @author Andrea Turbati
 */
public abstract class ProjectionRulesDeciderInterface extends CODAExtensionModuleInterface{

	public ProjectionRulesDeciderInterface(String id, String description) {
		super(id, description);
	}
	
	/**
	 * This method must be implemented by all the modules that implement this abstract class
	 * @return list of Hints
	 */
	public abstract SelectedProjectionRules invokeComponent();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy