integraal.services.AbstractInteGraalService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brunner-integraal Show documentation
Show all versions of brunner-integraal Show documentation
InteGraal module for the BRunner project
package integraal.services;
import fr.boreal.component_builder.api.IAlgorithmParameters;
import fr.boreal.component_builder.api.IInputDataScenario;
import tools.service.AbstractService;
/**
*
*/
public abstract class AbstractInteGraalService extends AbstractService {
/**
* @param ids input data scenario
* @param iap algorithm parameters
*/
public AbstractInteGraalService(IInputDataScenario ids, IAlgorithmParameters iap) {
super(ids, iap);
}
}