1 /* 2 * @(#)Input.java 1.6 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package com.sun.corba.se.spi.orbutil.fsm; 9 10 /** 11 * This interface must be implemented by any class that is used as 12 * an input to a FSM. The FSM only needs the identity of this 13 * object, so all that is really needs is the default equals implementation. 14 * The toString() method should also be overridden to give a concise 15 * description or name of the input. 16 * 17 * @version @(#)Input.java 1.6 03/12/19 18 * @author Ken Cavanaugh 19 */ 20 public interface Input 21 { 22 } 23 24 // end of Input.java 25