
Author: seb Date: Wed Dec 13 15:06:07 2006 New Revision: 1080 Modified: logback/trunk/logback-classic/src/main/java/ch/qos/logback/classic/turbo/TurboFilter.java logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/EvaluatorFilter.java logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java Log: javadoc updates Modified: logback/trunk/logback-classic/src/main/java/ch/qos/logback/classic/turbo/TurboFilter.java ============================================================================== --- logback/trunk/logback-classic/src/main/java/ch/qos/logback/classic/turbo/TurboFilter.java (original) +++ logback/trunk/logback-classic/src/main/java/ch/qos/logback/classic/turbo/TurboFilter.java Wed Dec 13 15:06:07 2006 @@ -12,6 +12,9 @@ * TurboFilter is a specialized filter with a decide method that takes a bunch * of parameters instead of a single event object. The latter is cleaner but * the latter is much more performant. + * <p> + * For more informations about turbo filters, please refer to the online manual at + * http://logback.qos.ch/manual/filters.html#TurboFilter * * @author Ceki Gulcu */ Modified: logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/EvaluatorFilter.java ============================================================================== --- logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/EvaluatorFilter.java (original) +++ logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/EvaluatorFilter.java Wed Dec 13 15:06:07 2006 @@ -15,6 +15,9 @@ * a given result must be returned after the evaluation either failed or succeeded. * </p> * + * For more informations about filters, please refer to the online manual at + * http://logback.qos.ch/manual/filters.html + * * @author Ceki Gülcü * @author Sébastien Pennec */ Modified: logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java ============================================================================== --- logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java (original) +++ logback/trunk/logback-core/src/main/java/ch/qos/logback/core/filter/Filter.java Wed Dec 13 15:06:07 2006 @@ -10,28 +10,8 @@ * and understand the built-in rules before rushing to write your own custom * filters. * <p> - * This abstract class assumes and also imposes that filters be organized in a - * linear chain. The {@link #decide decide(Object)} method of each filter is - * called sequentially, in the order of their addition to the chain. - * <p> - * The decide() method must return one of the FilterReplies {@link #DENY}, - * {@link #NEUTRAL} or {@link #ACCEPT}. - * <p> - * If the value DENY is returned, then the log event is dropped immediately - * without consulting with the remaining filters. - * - * <p> - * If the value NEUTRAL is returned, then the next filter in the chain is - * consulted. If there are no more filters in the chain, then the log event is - * logged. Thus, in the presence of no filters, the default behaviour is to log - * all logging events. - * - * <p> - * If the value ACCEPT is returned, then the log event is logged without - * consulting the remaining filters. - * - * <p> - * The philosophy of logback filters are largely inspired from Linux ipchains. + * For more informations about filters, please refer to the online manual at + * http://logback.qos.ch/manual/filters.html * * @author Ceki Gülcü */