Classes managed by helma.framework.core.Typemanager

implement this interface, but it is generic enough to be
used for other purposes.
This commit is contained in:
hns 2001-03-06 21:19:43 +00:00
parent 45da518a63
commit 643e7ff12e

View file

@ -0,0 +1,50 @@
// Updatable.java
// Copyright (c) Hannes Wallnöfer 2001
package helma.util;
/**
* An interface of classes that can update themselves and know when to do so.
*/
public interface Updatable {
public boolean needsUpdate ();
public void update ();
}