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