domurireference.java
来自「java1.6众多例子参考」· Java 代码 · 共 31 行
JAVA
31 行
/* * Copyright 2006 Sun Microsystems, Inc. All rights reserved. *//* * $Id: DOMURIReference.java,v 1.5 2005/05/09 18:33:26 mullan Exp $ */package javax.xml.crypto.dom;import javax.xml.crypto.URIReference;import org.w3c.dom.Node;/** * A DOM-specific {@link URIReference}. The purpose of this class is to * provide additional context necessary for resolving XPointer URIs or * same-document references. * * @author Sean Mullan * @author JSR 105 Expert Group * @since 1.6 */public interface DOMURIReference extends URIReference { /** * Returns the here node. * * @return the attribute or processing instruction node or the * parent element of the text node that directly contains the URI */ Node getHere();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?