Uses of Interface
com.usefullittlethings.saw.model.PluginIfc

Packages that use PluginIfc
com.usefullittlethings.saw.apps.file   
com.usefullittlethings.saw.apps.shared   
com.usefullittlethings.saw.model   
 

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

Classes in com.usefullittlethings.saw.apps.file that implement PluginIfc
 class AbstractFileActionPlugin
          Abstract implementation of an action plug-in that defines the result class as java.io.File.
 class AbstractFileFilterPlugin
          Abstract implementation of a filter plug-in that defines the result class as java.io.File.
 class CompareTo
          Filters files by whether or not they match another file, based on contents, size, or date modified.
 class Compress
          Compresses the files in the result list to the location specified in setCompressToLocation.
 class ContainsText
          Filters files by whether or not they contain a text string.
 class Copy
          Copies files in the result list to the location specified by setCopyToLocation.
 class DateRange
          Filters files by whether or not the data modified falls within a specified range.
 class Delete
          Deletes the files in the result list with an optional confirmation prompt.
 class ListToConsole
          List the files in the resultset to standard out, including file path, name, and extension.
 class ManualSelection
          Filters files by allowing the user to individually select items to include/exclude.
 class Mask
          Filters files in result list on whether or not the file name matches a particular mask pattern or string.
 class Move
          Moves the files in the result list to the location specified via the setMoveToLocation method.
 class ReplaceText
          Replaces string values in files with a new string value.
 class Sawj2h
          Wrapper class for SawJava2HTML, to present PluginIfc interface.
 class Size
          Filters files in the result list on whether or not the file size falls within a specified range.
 class WriteToFile
          Writes to a file (specified by setWriteToLocation) the details of the files listed in the result list.
 

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

Classes in com.usefullittlethings.saw.apps.shared that implement PluginIfc
 class AbstractActionPlugin
          Abstract implementation of an ActionPluginIfc to include a default configure method.
 class AbstractFilterPlugin
          Abstract implementation of an FilterPluginIfc to include a default configure method, a default toXMLString, and get/setOperation methods.
 class AbstractPlugin
          Abstract implementation of the PluginIfc interface that provides default methods for items such as setBase, getAuthor, etc.
 

Uses of PluginIfc in com.usefullittlethings.saw.model
 

Subinterfaces of PluginIfc in com.usefullittlethings.saw.model
 interface ActionPluginIfc
          Interface for action plug-ins.
 interface FilterPluginIfc
          Interface for filter plug-ins.
 

Methods in com.usefullittlethings.saw.model that return PluginIfc
 PluginIfc PluginCollection.get(int index)
           
 PluginIfc PluginCollection.get(java.lang.String name)
           
 

Methods in com.usefullittlethings.saw.model with parameters of type PluginIfc
 void PluginCollection.add(PluginIfc plugin)
           
 void PluginCollection.add(int index, PluginIfc plugin)
           
 void PluginCollection.remove(PluginIfc plugin)
           
 

Constructors in com.usefullittlethings.saw.model with parameters of type PluginIfc
PluginCollection(PluginIfc[] plugins)