equivalentrelationships.java

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

JAVA
32
字号
package org.xbrlapi;import org.xbrlapi.utilities.XBRLException;/** * @author Geoffrey Shuetrim (geoff@galexy.net) */public interface EquivalentRelationships {	    /**     * @return the number of equivalent relationships in the set.     */    public int getLength();    	/**	 * @param relationship The relationship to add.	 * @throws XBRLException if the relationship is not equivalent to 	 * the relationship with the highest priority in the collection.	 */	public void addRelationship(Relationship relationship) throws XBRLException;		/**	 * @return the active relationship in the collection of 	 * equivalent relationships.  This is any one of the relationships	 * that has the maximum priority out of the set of relationships in the	 * collection. If there are no relationships in the collection, return null.	 * @throws XBRLException	 */	public Relationship getActiveRelationship() throws XBRLException;	}

⌨️ 快捷键说明

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