001 package com.croftsoft.core.util.state;
002
003 /*********************************************************************
004 *
005 * An interface for listeners of object State updates.
006 *
007 * @author
008 * <a href="https://www.croftsoft.com/">David Wallace Croft</a>
009 * @version
010 * 1998-11-23
011 *********************************************************************/
012
013 public interface StateListener
014 //////////////////////////////////////////////////////////////////////
015 //////////////////////////////////////////////////////////////////////
016 {
017
018 public void stateListen ( State state );
019
020 //////////////////////////////////////////////////////////////////////
021 //////////////////////////////////////////////////////////////////////
022 }