view src/cachingfilter/CachedPage.java @ 14:ce7a435cba25

change ad unit ad code
author raven <mazdarulez@hotmail.com>
date Wed, 21 Aug 2019 13:43:30 +1000
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();
}