001/**
002 * Portions Copyright 2001 Sun Microsystems, Inc.
003 * Portions Copyright 1999-2001 Language Technologies Institute, 
004 * Carnegie Mellon University.
005 * All Rights Reserved.  Use is subject to license terms.
006 * 
007 * See the file "license.terms" for information on usage and
008 * redistribution of this file, and for a DISCLAIMER OF ALL 
009 * WARRANTIES.
010 */
011package com.sun.speech.freetts.en.us;
012
013import java.io.IOException;
014import java.net.URL;
015
016/**
017 * Implements a finite state machine that checks if a given string
018 * is a prefix.
019 */
020public class PrefixFSM extends PronounceableFSM {
021
022    /**
023     * Constructs a PrefixFSM.
024     */
025    public PrefixFSM(URL url) throws IOException {
026        super(url, true);
027    }
028}
029