rinde.sim.pdptw.common.ScenarioParser Maven / Gradle / Ivy
The newest version!
/**
*
*/
package rinde.sim.pdptw.common;
/**
* A parser for {@link DynamicPDPTWScenario}s.
* @param The type of scenario that is parsed.
* @author Rinde van Lon
*/
public interface ScenarioParser {
/**
* Should parse the file.
* @param file The file to parse.
* @return The {@link DynamicPDPTWScenario} instance.
*/
T parse(String file);
}