001 package com.croftsoft.core.lang.lifecycle;
002
003 /*********************************************************************
004 * Defines the update() method.
005 *
006 * @version
007 * $Date: 2008/04/19 21:27:13 $
008 * @since
009 * 2005-08-12
010 * @author
011 * <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012 *********************************************************************/
013
014 public interface Updatable
015 //////////////////////////////////////////////////////////////////////
016 //////////////////////////////////////////////////////////////////////
017 {
018
019 public void update ( );
020
021 //////////////////////////////////////////////////////////////////////
022 //////////////////////////////////////////////////////////////////////
023 }