X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fcache%2FCacheable.java;h=9aa0a0a002fa467d6c7e24440ddaf0f65dfe12e9;hb=ddaf8294122cf6dd080339726113f9f54175f413;hp=d17cab47717ec25bea452edabadd620c0dea53f3;hpb=0ce95d9c8581b19c1d636f67f67dd670e41f1ca9;p=jalview.git diff --git a/src/jalview/io/cache/Cacheable.java b/src/jalview/io/cache/Cacheable.java index d17cab4..9aa0a0a 100644 --- a/src/jalview/io/cache/Cacheable.java +++ b/src/jalview/io/cache/Cacheable.java @@ -1,7 +1,5 @@ package jalview.io.cache; -import javax.swing.JComboBox; -import javax.swing.JComponent; public interface Cacheable { @@ -16,7 +14,7 @@ public interface Cacheable * * @return */ - public JComboBox getCacheComboBox(); + public CacheBoxI getCacheComboBox(); /** * The unique key that will be used for storing user input for this cacheable @@ -26,12 +24,5 @@ public interface Cacheable */ public String getCacheKey(); - /** - * Get next focusable component. Required to delegate focus while updating the - * cacheable component cache - * - * @return - */ - public JComponent getNextFocusableElement(); }