JAL-1648 Fix review issue - remove usage of String.join
[jalview.git] / src / jalview / io / cache / Cacheable.java
1 package jalview.io.cache;
2
3
4 public interface Cacheable
5 {
6
7   /**
8    * method executed on cache initialisation
9    */
10   public void initCache();
11
12   /**
13    * method executed on cache update
14    */
15   public void updateCache();
16
17   /**
18    * Combo-box instance for the cache component
19    * 
20    * @return
21    */
22   public CacheBoxI<String> getCacheComboBox();
23
24   /**
25    * The unique key that will be used for storing user input for this cacheable
26    * in the cache dictionary
27    * 
28    * @return
29    */
30   public String getCacheKey();
31 }