tuple.java

来自「xbrlapi的源码」· Java 代码 · 共 41 行

JAVA
41
字号
package org.xbrlapi;

import org.xbrlapi.utilities.XBRLException;

/**
 * @author Geoffrey Shuetrim (geoff@galexy.net)
 */

public interface Tuple extends Fact {

	/**
	 * Get the child facts
	 * @throws XBRLException
	 */
	public FragmentList<Fact> getChildFacts() throws XBRLException;

	/**
	 * Get a list of facts matching the specified fact name.
	 * @param namespace The namespace of the desired facts
	 * @param name The local name of the desired facts
	 * @return the specified facts.
	 * @throws XBRLException
	 */
	public FragmentList<Fact> getChildFacts(String namespace, String name) throws XBRLException;
	
	/**
	 * Get a list of facts matching the specified fact name and context id.
	 * @param namespace The namespace of the desired facts
	 * @param name The local name of the desired facts
	 * @param contextRef The value of the context reference for the required facts.
	 * @return the specified facts.
	 * @throws XBRLException
	 */
	public FragmentList<Fact> getChildFacts(String namespace, String name, String contextRef) throws XBRLException;
	



	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?