📄 indexerscatalog.java
字号:
// IndexersCatalog.java// $Id: IndexersCatalog.java,v 1.5 2002/06/26 17:26:03 ylafon Exp $ // (c) COPYRIGHT MIT and INRIA, 1997.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.resources.indexer;import java.io.File;import org.w3c.tools.resources.ExternalContainer;import org.w3c.tools.resources.ResourceContext;import org.w3c.tools.resources.ServerInterface;public class IndexersCatalog extends ExternalContainer { public File getRepository(ResourceContext context) { return new File(context.getServer().getIndexerDirectory(), "idx.db"); } public IndexersCatalog(ResourceContext context) { super("indexers".intern(), context, true); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -