mixedcontentresource.java
来自「xbrlapi的源码」· Java 代码 · 共 34 行
JAVA
34 行
package org.xbrlapi;
/**
* @author Geoffrey Shuetrim (geoff@galexy.net)
*/
import org.w3c.dom.NodeList;
import org.xbrlapi.utilities.XBRLException;
public interface MixedContentResource extends Resource {
/**
* Get the value of the resource as a NodeList containing all of the children
* elements and text nodes nested in the resource.
* @return a list of child nodes of the resource including attributes,
* XHTML elements, and text nodes.
* @throws XBRLException
*/
public NodeList getContent() throws XBRLException;
/**
* Get the value of the xml:lang attribute on the resource.
* @return the string value of the XML language attribute on
* the label resource or null if no such attribute is provided.
* @throws XBRLException
*/
public String getLanguage() throws XBRLException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?