package model;

/**
 * Interface describing the required functions for a type.
 * @author fmeslet
 * @version 1.0
 */
public interface UmlType {
	
	/**
	 * Get the name of the type.
	 * @return The name the the type
	 */
	public String getTypeName();
}
