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