loggingconstants.java

来自「jbpm的demo,带有流程设计」· Java 代码 · 共 44 行

JAVA
44
字号
/** * $Source: /home/ws/rz65/CVS-Repository/WorkflowProjects/JBPM-Demo/src/java/jbpmdemo/logging/LoggingConstants.java,v $ * $Revision: 1.1 $ * $Date: 2005/03/05 12:16:28 $ * $Author: rz65 $ * * Copyright (c) 2005 Universitaet Karlsruhe (TH) / Rechenzentrum (RZ-UNI-UKA) * * RZ-UNI-KA makes no representations or warranties about the suitability * of this software, either express or implied, including but not limited * to the implied warranties of merchantability, fitness for a particular * purpose, or non-infringement. RZ-UNI-KA shall not be liable for any * damages as a result of using, modifying or distributing this software * or its derivatives. */package jbpmdemo.logging;import jbpmdemo.JBPMDemoConstants;/** * The constants of the logging sub-package. *  * <p> *  * @version $Revision: 1.1 $ * @author mailto:harald.meyer@rz.uni-karlsruhe.de */public interface LoggingConstants extends JBPMDemoConstants {	/**	 * The "method name" that is used to indicate the source of a message if the	 * "method" that issued the message was a class constructor.	 */	public static final String MN_INIT = "__INIT__";	/**	 * The system property key for the logging configuration file.	 */	public static final String SYSPROP_KEY_LOGGING_CONFIGURATION = "jbpmdemo.logging.configuration";}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?