/*
* JFLAP - Formal Languages and Automata Package
*
*
* Susan H. Rodger
* Computer Science Department
* Duke University
* August 27, 2009
* Copyright (c) 2002-2009
* All rights reserved.
* JFLAP is open source software. Please see the LICENSE for terms.
*
*/
package automata.mealy;
import automata.Automaton;
/**
* This subclass of Automaton
is specifically for
* a definition of a Mealy machine.
*
* @author Jinghui Lim
*
*/
public class MealyMachine extends Automaton
{
/**
* Creates a Mealy machine with no states or transitions.
*
*/
public MealyMachine()
{
super();
}
/**
* Returns the class of Transition
this automaton
* must accept.
*
* @return the Class
object for the
* MealyTransition
*/
protected Class getTransitionClass()
{
return MealyTransition.class;
}
}