X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Ffts%2Fapi%2FGFTSPanelI.java;h=f86c3bc4663451e0b294aabf03ef8934998f2cf5;hb=refs%2Fheads%2Fbug%2FJAL-2515;hp=16bf4042b2d1b8d19fc86de925b28131192f40a1;hpb=a3499f1eaaef8cc03aac19a28f960acd0fd70a04;p=jalview.git diff --git a/src/jalview/fts/api/GFTSPanelI.java b/src/jalview/fts/api/GFTSPanelI.java index 16bf404..f86c3bc 100644 --- a/src/jalview/fts/api/GFTSPanelI.java +++ b/src/jalview/fts/api/GFTSPanelI.java @@ -21,6 +21,8 @@ package jalview.fts.api; +import java.util.Map; + import javax.swing.JTable; /** @@ -33,8 +35,12 @@ public interface GFTSPanelI /** * Action performed when a text is entered in the search field. + * + * @param isFreshSearch + * if true a fresh search is executed else a pagination search is + * executed */ - public void searchAction(); + public void searchAction(boolean isFreshSearch); /** * Action performed when search results are selected and the 'ok' button is @@ -123,4 +129,12 @@ public interface GFTSPanelI * @param isEnabled */ public void setNextPageButtonEnabled(boolean isEnabled); + + /** + * The HashMap used to store user preferences for summary table columns, + * window size and position + * + * @return + */ + public Map getTempUserPrefs(); }