001/**
002 * Portions Copyright 2004 DFKI GmbH.
003 * Portions Copyright 2001 Sun Microsystems, Inc.
004 * Portions Copyright 1999-2001 Language Technologies Institute, 
005 * Carnegie Mellon University.
006 * All Rights Reserved.  Use is subject to license terms.
007 * 
008 * See the file "license.terms" for information on usage and
009 * redistribution of this file, and for a DISCLAIMER OF ALL 
010 * WARRANTIES.
011 */
012package de.dfki.lt.freetts;
013
014import com.sun.speech.freetts.Item;
015
016public interface ClusterUnitNamer {
017    /**
018     * Sets the cluster unit name given the segment.
019     *
020     * @param seg the segment item that gets the name
021     */
022    void setUnitName(Item seg);
023
024}