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. package com.sun.corba.se.spi.orbutil.fsm;
  8. /**
  9. * This interface must be implemented by any class that is used as
  10. * an input to a FSM. The FSM only needs the identity of this
  11. * object, so all that is really needs is the default equals implementation.
  12. * The toString() method should also be overridden to give a concise
  13. * description or name of the input.
  14. *
  15. * @version @(#)Input.java 1.6 03/12/19
  16. * @author Ken Cavanaugh
  17. */
  18. public interface Input
  19. {
  20. }
  21. // end of Input.java