metadataframe.java
来自「很棒的web服务器源代码」· Java 代码 · 共 34 行
JAVA
34 行
// 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 + =
减小字号Ctrl + -
显示快捷键?