org.eclipse.datatools.connectivity.oda.util.logging
Interface Filter
- public interface Filter 
A Filter can provide more control on what is logged.
  It filters LogRecords from its parent handler based on the rules 
  that are implemented in isLoggable().
        
        
        Each Handler can have an associated Filter and calls the 
        isLoggable method to check whether the 
        LogRecord should be published.
| Method Summary | 
|  boolean | isLoggable(LogRecord record)Checks if the the
 LogRecordshould be published. | 
 
isLoggable
boolean isLoggable(LogRecord record)
- Checks if the the LogRecordshould be published.
 
- 
- Parameters:
- record- the log record.
- Returns:
- trueif the log record should
                                        be published;- falseotherwise.