FileDocCategorySizeDatePackage
Refreshable.javaAPI DocExample205Wed Aug 25 19:54:34 BST 2004com.oreilly.strutsckbk.ch10

Refreshable.java

package com.oreilly.strutsckbk.ch10;

/**
 * An object that can be refreshed from its original source.
 */
public interface Refreshable {

    public void refresh() throws CacheException;
    
}