upstream version 1.2.2
[debian/freetts] / com / sun / speech / freetts / en / us / SuffixFSM.java
1 /**
2  * Portions Copyright 2001 Sun Microsystems, Inc.
3  * Portions Copyright 1999-2001 Language Technologies Institute, 
4  * Carnegie Mellon University.
5  * All Rights Reserved.  Use is subject to license terms.
6  * 
7  * See the file "license.terms" for information on usage and
8  * redistribution of this file, and for a DISCLAIMER OF ALL 
9  * WARRANTIES.
10  */
11 package com.sun.speech.freetts.en.us;
12
13 import java.io.IOException;
14 import java.net.URL;
15
16 /**
17  * Implements a finite state machine that checks if a given string
18  * is a suffix.
19  */
20 public class SuffixFSM extends PronounceableFSM {
21
22     /**
23      * Constructs a SuffixFSM.
24      */
25     public SuffixFSM(URL url) throws IOException {
26         super(url, false);
27     }
28 }
29
30
31
32
33