referenceresource.java
来自「xbrlapi的源码」· Java 代码 · 共 32 行
JAVA
32 行
package org.xbrlapi;
import org.xbrlapi.utilities.XBRLException;
/**
* @author Geoffrey Shuetrim (geoff@galexy.net)
*/
public interface ReferenceResource extends MixedContentResource {
/**
* Get a list of reference part fragments.
* @return the list of reference part fragments that are children of the reference.
* @throws XBRLException
*/
public FragmentList<ReferencePart> getReferenceParts() throws XBRLException;
/**
* Get a specific reference part from a reference.
* Returns null if no such reference part exists.
*
* @param namespaceURI The namespace in which the reference part has been defined
* @param localName The local name of the reference part
* @throws XBRLException
*/
public ReferencePart getReferencePart(String namespaceURI, String localName) throws XBRLException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?