java源代码 请看看啊 提点宝贵的意见

源代码在线查看: filter.java

软件大小: 485 K
上传用户: snowpilce
关键词: java 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * @(#)Filter.java	1.4 03/01/23				 *				 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.				 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.				 */												package java.util.logging;								/**				 * A Filter can be used to provide fine grain control over				 * what is logged, beyond the control provided by log levels.				 * 				 * Each Logger and each Handler can have a filter associated with it.				 * The Logger or Handler will call the isLoggable method to check				 * if a given LogRecord should be published.  If isLoggable returns				 * false, the LogRecord will be discarded.				 *				 * @version 1.4, 01/23/03				 * @since 1.4				 */								public interface Filter {								    /**				     * Check if a given log record should be published.				     * @param record  a LogRecord				     * @return true if the log record should be published.				     */				    public boolean isLoggable(LogRecord record);								}							

相关资源