/**
*
*/
package vroom.common.utilities;
/**
* <code>IToShortString</code> is an interface for objects that will declare a {@code toShortString} function which will
* return a simplified description of the instance.
* <p>
* Creation date: Mar 16, 2012 - 1:46:03 PM
*
* @author Victor Pillac, <a href="http://uniandes.edu.co">Universidad de Los Andes</a>-<a
* href="http://copa.uniandes.edu.co">Copa</a> <a href="http://www.emn.fr">Ecole des Mines de Nantes</a>-<a
* href="http://www.irccyn.ec-nantes.fr/irccyn/d/en/equipes/Slp">SLP</a>
* @version 1.0
*/
public interface IToShortString {
public String toShortString();
}