view src/cachingfilter/CachedPage.java @ 18:862b1ef23e75

add setup.sh
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 02 Feb 2020 09:04:59 -0700
parents 7ecd1a4ef557
children
line wrap: on
line source

package cachingfilter;

import java.io.File;
import java.io.IOException;


interface CachedPage {
	public String name();
	public boolean exists();
	public File lastFile();
	public File newFile() throws IOException;
	public void deleteNewFile();
	public boolean delete();
}