package jalview.io.cache; public interface Cacheable { /** * method executed on cache initialisation */ public void init(); /** * Combo-box instance for the cache component * * @return */ public CacheBoxI getCacheComboBox(); /** * The unique key that will be used for storing user input for this cacheable * in the cache dictionary * * @return */ public String getCacheKey(); }