/**
 * Represents an object that has a name.
 */
public interface Named {
    /**
     * Returns the name of this object.
     *
     * @return the name as a String
     */
    public String getName();
}
