package nl.tudelft.simulation.introspection.gui; import nl.tudelft.simulation.introspection.mapping.CellPresentationConfiguration; /** * Allows discovery of a cell presentation configuration {see * nl.tudelft.simulation.introspection.mapping.CellPresentationConfiguration}. *
* (c) copyright 2002-2014 Delft University of Technology.
* BSD-style license. See DSOL License.
* @author Peter Jacobs.
* @author Alexander Verbraeck.
* @author Niels Lang.
* @since 1.5
*/
public interface ICellPresentationConfigProvider
{
/**
* @return the cellPresentationConfiguration
*/
public CellPresentationConfiguration getCellPresentationConfiguration();
}