📄 metadataframe.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 + -