pushcachestore.java

来自「很棒的web服务器源代码」· Java 代码 · 共 31 行

JAVA
31
字号
// PushCacheStore.java// $Id: PushCacheStore.java,v 1.1 2001/10/03 15:00:46 ylafon Exp $// (c) COPYRIGHT MIT, INRIA and Keio, 2001.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.www.protocol.http.cache.push;import org.w3c.www.protocol.http.cache.CacheStore;import java.io.File;/** * Trival subclass of CacheStore which simply provides access to  * getNewEntryFile for members of this package. * * If CacheStore.getNewEntryFile was public, this class would not be  * necessary. * * @author Paul Henshaw, The Fantastic Corporation, Paul.Henshaw@fantastic.com * @version $Revision: 1.1 $ * $Id: PushCacheStore.java,v 1.1 2001/10/03 15:00:46 ylafon Exp $ */class PushCacheStore extends CacheStore {    /**     * Calls super.getNewEntryFile()     */    protected File getNewEntryFile() {	return(super.getNewEntryFile());    }}

⌨️ 快捷键说明

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