Mercurial Hosting > nabble
diff src/cachingfilter/CachedPage.java @ 0:7ecd1a4ef557
add content
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 21 Mar 2019 19:15:52 -0600 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cachingfilter/CachedPage.java Thu Mar 21 19:15:52 2019 -0600 @@ -0,0 +1,14 @@ +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(); +}