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

jadex.extension.envsupport.evaluation.ITableDataProvider Maven / Gradle / Ivy

Go to download

The Jadex kernel extension envsupport allows for using 2D spaces in concert with components.

There is a newer version: 3.0.117
Show newest version
package jadex.extension.envsupport.evaluation;

/**
 *  A table data provider is used for collecting data on demand,
 *  i.e. every time getTableData is called.
 */
public interface ITableDataProvider
{
	/**
	 *  Get the data from a data provider.
	 *  @param time The current time.
	 *  @param tick The current tick.
	 *  @return The data.
	 */
	public DataTable getTableData(long time, double tick);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy