⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 metadataframe.java

📁 很棒的web服务器源代码
💻 JAVA
字号:
// MetaDataFrame.java// $Id: MetaDataFrame.java,v 1.1 1999/04/26 12:13:12 bmahe Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.resources ;public class MetaDataFrame extends ResourceFrame {    /**     * Get our target resource.     */    public Resource getTargetResource() {	Resource target = (Resource) getResource();	while (target instanceof ResourceFrame) {	    target = ((ResourceFrame)target).getResource();	}	return target;    }    /**     * Perform the request, return null in MetaDataFrame.     * @param request the incomming request     * @exception ProtocolException If an error relative to the protocol occurs     * @exception ResourceException If an error not relative to the      * protocol occurs     */     public ReplyInterface perform(RequestInterface request) 	throws ProtocolException, ResourceException    {	return null;    }}

⌨️ 快捷键说明

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