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

jadex.extension.envsupport.evaluation.IObjectSource 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;

import java.util.List;


/**
 *  An object source is used from a data provider 
 *  to fetch all objects from a data source.
 *  It calculates the cartesian products from all row providers. 
 */
public interface IObjectSource
{
	/**
	 *  Get all objects from the data source.
	 *  @return All objects from the data source.
	 */
	public List getObjects();

	/**
	 *  Get the source name.
	 *  @return The source name.
	 */
	public String getSourceName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy