Packagecom.daveoncode.logging.filters
Classpublic class Filter
ImplementsIFilter

The only pourpose of Filter is to be wrapped by one or more filters (classes which extend AbstractFilter)

See also

com.daveoncode.logging.filters.IFilter


Public Methods
 MethodDefined by
  
Constructor function of Filter class
Filter
  
apply(record:LogRecord):Boolean
Basic implementation of IFilter interface, the value returned is always true and only apply() methods implemented by subclasses of AbstractFilter have real buisiness logic implementation
Filter
Public Constants
 ConstantDefined by
  ALL_VALUES : String = "*"
[static] A wildcard which means "all values are ok" (the filter will returns true)
Filter
Constructor detail
Filter()constructor
public function Filter()

Constructor function of Filter class

Method detail
apply()method
public function apply(record:LogRecord):Boolean

Basic implementation of IFilter interface, the value returned is always true and only apply() methods implemented by subclasses of AbstractFilter have real buisiness logic implementation

Parameters
record:LogRecordThe object to filter

Returns
Boolean — Boolean Always true
Constant detail
ALL_VALUESconstant
public static const ALL_VALUES:String = "*"

A wildcard which means "all values are ok" (the filter will returns true)