com.sun.labs.minion.util
Interface SimpleFilter

All Known Implementing Classes:
PartitionManager.ExtFilter

public interface SimpleFilter

An interface that defines a simple filter that takes a string and returns true if further processing should be done on that string, and false otherwise. This is a lighter-weight thing than java.io.FileFilter, since it doesn't require making Files for everything.


Method Summary
 boolean accept(java.lang.String s)
          Returns true if there should be further processing on the given string, false otherwise.
 

Method Detail

accept

boolean accept(java.lang.String s)
Returns true if there should be further processing on the given string, false otherwise.