📄 repositoryselector.java
字号:
package org.apache.log4j.spi;/** The <code>LogManager</code> uses one (and only one) <code>RepositorySelector</code> implementation to select the {@link LoggerRepository} for a particular application context. <p>It is the responsability of the <code>RepositorySelector</code> implementation to track the application context. Log4j makes no assumptions about the application context or on its management. <p>See also {@link org.apache.log4j.LogManager LogManager}. @author Ceki Gülcü @since 1.2 */public interface RepositorySelector { /** Returns a {@link LoggerRepository} depending on the context. Implementors must make sure that a valid (non-null) LoggerRepository is returned. */ public LoggerRepository getLoggerRepository();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -