1
2
3
4
5 package nl.tudelft.simulation.introspection.gui;
6
7 import nl.tudelft.simulation.introspection.mapping.CellPresentationConfiguration;
8
9 /***
10 * Allows discovery of a cell presentation configuration {see
11 * nl.tudelft.simulation.introspection.mapping.CellPresentationConfiguration}.
12 *
13 * @author <a
14 * href="http://web.eur.nl/fbk/dep/dep1/Introduction/Staff/People/Lang">Niels
15 * Lang </a><a
16 * @since 1.5
17 */
18 public interface ICellPresentationConfigProvider
19 {
20 /***
21 * @return the cellPresentationConfiguration
22 */
23 public CellPresentationConfiguration getCellPresentationConfiguration();
24 }