schemacontent.java

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

JAVA
30
字号
package org.xbrlapi;

import org.xbrlapi.utilities.XBRLException;

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

public interface SchemaContent extends Fragment {

    /**
     * Gets the schema fragment that is the schema containing this element declaration.
     * @return the schema fragment that is the schema containing this element declaration.
     * @throws XBRLException if the schema content is not inside a schema.
     */
    public Schema getSchema() throws XBRLException;
    
    /**
     * Get the target namespace of the schema that contains this fragment.
     * @return the target namespace of the schema that contains this fragment
     * or null if no targetNamespace attribute is defined for the containing
     * schema fragment.
     * @throws XBRLException
     */
    public String getTargetNamespaceURI() throws XBRLException;
    
    

}

⌨️ 快捷键说明

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