Package com.jidesoft.swing
Interface SearchableBar.Installer
-
- Enclosing class:
- SearchableBar
public static interface SearchableBar.InstallerThe installer for SearchableBar.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcloseSearchBar(SearchableBar searchableBar)Called to hide the SearchableBar.voidopenSearchBar(SearchableBar searchableBar)Called to show the SearchableBar so that user can see it.
-
-
-
Method Detail
-
openSearchBar
void openSearchBar(SearchableBar searchableBar)
Called to show the SearchableBar so that user can see it. For example, if you want to add a SearchableBar to the south of a JTextArea, you should add JTextArea to the CENTER of a BorderLayout panel. In this method, you add the SearchableBar to the SOUTH of the same BorderLayout panel.- Parameters:
searchableBar- the searchable bar
-
closeSearchBar
void closeSearchBar(SearchableBar searchableBar)
Called to hide the SearchableBar.- Parameters:
searchableBar- the searchable bar
-
-