upstream version 1.2.2
[debian/freetts] / de / dfki / lt / freetts / ClusterUnitNamer.java
1 /**
2  * Portions Copyright 2004 DFKI GmbH.
3  * Portions Copyright 2001 Sun Microsystems, Inc.
4  * Portions Copyright 1999-2001 Language Technologies Institute, 
5  * Carnegie Mellon University.
6  * All Rights Reserved.  Use is subject to license terms.
7  * 
8  * See the file "license.terms" for information on usage and
9  * redistribution of this file, and for a DISCLAIMER OF ALL 
10  * WARRANTIES.
11  */
12 package de.dfki.lt.freetts;
13
14 import com.sun.speech.freetts.Item;
15
16 public interface ClusterUnitNamer {
17     /**
18      * Sets the cluster unit name given the segment.
19      *
20      * @param seg the segment item that gets the name
21      */
22     void setUnitName(Item seg);
23
24 }