view src/cachingfilter/CachedPage.java @ 63:4987e1a38a6c default tip

remove ads from homepage
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 28 Aug 2024 15:34:42 -0600
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();
}