📄 mixedcontentresource.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -