Uses of Interface
com.usefullittlethings.saw.controller.SearchControllerIfc

Packages that use SearchControllerIfc
com.usefullittlethings.saw   
com.usefullittlethings.saw.apps.file   
com.usefullittlethings.saw.apps.shared   
com.usefullittlethings.saw.controller   
com.usefullittlethings.saw.model   
com.usefullittlethings.saw.ui   
com.usefullittlethings.saw.util   
 

Uses of SearchControllerIfc in com.usefullittlethings.saw
 

Methods in com.usefullittlethings.saw that return SearchControllerIfc
 SearchControllerIfc[] Main.getSearchControllers()
          Returns a list of the currently installed search controller plug-ins.
 SearchControllerIfc Main.getCurrentSearchController()
          Returns the currently selected search controller plug-in.
 

Methods in com.usefullittlethings.saw with parameters of type SearchControllerIfc
 void Main.setCurrentSearchController(SearchControllerIfc controller)
          Attempts to set the currently selected search controller to the controller passed in to the method.
 

Uses of SearchControllerIfc in com.usefullittlethings.saw.apps.file
 

Classes in com.usefullittlethings.saw.apps.file that implement SearchControllerIfc
 class FileSearchController
          Controller class for locating and returning a list of File or File[] objects, with options for searchnig sub-folders.
 

Uses of SearchControllerIfc in com.usefullittlethings.saw.apps.shared
 

Classes in com.usefullittlethings.saw.apps.shared that implement SearchControllerIfc
 class AbstractSearchController
          Abstract implementation of a SearchControllerIfc interface which provides some default behavior such as getBase and setAppController.
 

Uses of SearchControllerIfc in com.usefullittlethings.saw.controller
 

Methods in com.usefullittlethings.saw.controller that return SearchControllerIfc
 SearchControllerIfc[] AppControllerIfc.getSearchControllers()
          Returns a list of the currently installed search controller plug-ins.
 SearchControllerIfc AppControllerIfc.getCurrentSearchController()
          Returns the currently selected search controller plug-in.
 

Methods in com.usefullittlethings.saw.controller with parameters of type SearchControllerIfc
 void AppControllerIfc.setCurrentSearchController(SearchControllerIfc controller)
          Attempts to set the currently selected search controller to the controller passed in to the method.
 

Uses of SearchControllerIfc in com.usefullittlethings.saw.model
 

Methods in com.usefullittlethings.saw.model with parameters of type SearchControllerIfc
 void ControllerManagementTableModel.setModel(SearchControllerIfc[] controllers)
           
 

Constructors in com.usefullittlethings.saw.model with parameters of type SearchControllerIfc
ControllerManagementTableModel(SearchControllerIfc[] controllers)
           
 

Uses of SearchControllerIfc in com.usefullittlethings.saw.ui
 

Methods in com.usefullittlethings.saw.ui that return SearchControllerIfc
 SearchControllerIfc DefaultConfigurationDialog.getSelectedController()
           
 

Methods in com.usefullittlethings.saw.ui with parameters of type SearchControllerIfc
 void DefaultConfigurationDialog.setSearchControllers(SearchControllerIfc[] controllers)
           
 void DefaultConfigurationDialog.setCurrentSearchController(SearchControllerIfc controller)
           
 

Constructors in com.usefullittlethings.saw.ui with parameters of type SearchControllerIfc
DefaultPluginManagementDialog(SearchControllerIfc[] controllers, PluginCollection filters, PluginCollection actions)
           
DefaultConfigurationDialog(SearchControllerIfc[] controllers, SearchControllerIfc currentController, int[] patterns, java.lang.String logFile, boolean autoSave, boolean enableLogging)
           
DefaultConfigurationDialog(SearchControllerIfc[] controllers, SearchControllerIfc currentController, int[] patterns, java.lang.String logFile, boolean autoSave, boolean enableLogging)
           
 

Uses of SearchControllerIfc in com.usefullittlethings.saw.util
 

Methods in com.usefullittlethings.saw.util that return SearchControllerIfc
 SearchControllerIfc SawClassLoader.loadSearchController(java.lang.String className)
          Loads a class implementing the SearchControllerIfc interface that is referenced by the specified className.
 SearchControllerIfc[] SawClassLoader.loadSearchControllers(java.io.File pluginFolder)