⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 context.java

📁 xbrlapi的源码
💻 JAVA
字号:
package org.xbrlapi;

import org.xbrlapi.utilities.XBRLException;

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

public interface Context extends FactDimensionContainer {
    
    /**
     * Get the entity of the context.
     * @throws XBRLException if the entity is missing or if more than one entity is in the context.
     */
    public Entity getEntity() throws XBRLException;

    /**
     * Get the period of the context.
     *
     * @throws XBRLException
     */
    public Period getPeriod() throws XBRLException;

    /**
     * Get the scenario of the context.
     * Returns null if there is no scenario.
     *
     * @throws XBRLException
     */
    public Scenario getScenario() throws XBRLException;

    /**
     * Tests if the context is c-equal to another context
     * returning true if they are c-equal.
     * See the XBRL 2.1 specification for a definition of c-equal. 
     *
     * @param context The context being compared.
     * @throws XBRLException
     */
    public boolean equals(Context context) throws XBRLException;    
    
}

⌨️ 快捷键说明

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