X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fcache%2FCacheable.java;h=0287457d903cca0005840ffc69e324883a68f585;hb=7b10124f09af29607ea0150726ad5d63da09fdaf;hp=9aa0a0a002fa467d6c7e24440ddaf0f65dfe12e9;hpb=ddaf8294122cf6dd080339726113f9f54175f413;p=jalview.git diff --git a/src/jalview/io/cache/Cacheable.java b/src/jalview/io/cache/Cacheable.java index 9aa0a0a..0287457 100644 --- a/src/jalview/io/cache/Cacheable.java +++ b/src/jalview/io/cache/Cacheable.java @@ -7,7 +7,12 @@ public interface Cacheable /** * method executed on cache initialisation */ - public void init(); + public void initCache(); + + /** + * method executed on cache update + */ + public void updateCache(); /** * Combo-box instance for the cache component @@ -23,6 +28,4 @@ public interface Cacheable * @return */ public String getCacheKey(); - - }