Mercurial Hosting > nabble
view src/cachingfilter/CachedPage.java @ 28:03e68185c2f5
block spam forums
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 02 Jul 2020 21:19:24 -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(); }