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

📄 grant.java

📁 一个自然语言处理的Java开源工具包。LingPipe目前已有很丰富的功能
💻 JAVA
字号:
/* * LingPipe v. 3.5 * Copyright (C) 2003-2008 Alias-i * * This program is licensed under the Alias-i Royalty Free License * Version 1 WITHOUT ANY WARRANTY, without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the Alias-i * Royalty Free License Version 1 for more details. * * You should have received a copy of the Alias-i Royalty Free License * Version 1 along with this program; if not, visit * http://alias-i.com/lingpipe/licenses/lingpipe-license-1.txt or contact * Alias-i, Inc. at 181 North 11th Street, Suite 401, Brooklyn, NY 11211, * +1 (718) 290-9170. */package com.aliasi.medline;import com.aliasi.xml.DelegateHandler;import com.aliasi.xml.DelegatingHandler;import com.aliasi.xml.TextAccumulatorHandler;import org.xml.sax.SAXException;/** * A <code>Grant</code> represents a particular instance of a grant. * Three pieces of information are optionally available: the  * grant identifier, the acronym of the grant type, and the acronym * for the grant agencies. *  * <P>The full list of grant agencies, grants and their acronyms may * be found at: *  * <blockquote> * <a href="http://www.ncbi.nlm.nih.gov/entrez/query/static/help/pmhelp.html#grantacronym">PubMed Help: Grant Abbreviations</a> * </blockquote> * * @author  Bob Carpenter * @version 2.0 * @since   LingPipe2.0 */public class Grant {    private final String mGrantID;    private final String mAcronym;    private final String mAgency;    Grant(String grantID, String acronym, String agency) {        mGrantID = grantID;        mAcronym = acronym;        mAgency = agency;    }        /**     * Returns the grant identifier for this grant, or the     * empty (zero length) string if none was provided.       *     * @return The grant identifier for this grant.     */    public String grantID() {        return mGrantID;    }    /**     * Returns a two-letter acronym for the type of this grant, or     * the empty (zero length) string if none was provided.     * A link to a list of grant abbreviations is cited in the class     * documentation above.     *     * @return The acronym for the type of this grant.     */    public String acronym() {        return mAcronym;    }    /**     * Returns a three-letter acronym for the agency providing     * this grant, or the empty (zero length) string if none was provided.     * A link to a list of grant abbreviations is cited in the class     * documentation above.     *     * @return The acronym for the agency providing this grant.     */    public String agency() {        return mAgency;    }    /**     * Returns a string-based representation of this grant.     *     * @return A string-based representation of this grant.     */    public String toString() {        StringBuffer sb = new StringBuffer();        sb.append('{');        if (grantID() != null && grantID().length() > 0) {            sb.append(" Grant ID=" + grantID());        }        if (acronym() != null && acronym().length() > 0) {            sb.append(" Acronym=" + acronym());        }        if (agency() != null && agency().length() > 0) {            sb.append(" Agency=" + agency());        }        sb.append('}');        return sb.toString();    }    // <!ELEMENT Grant (%GrantID.Ref;, %Acronym.Ref;, %Agency.Ref;)>    // <!ENTITY % GrantID.Ref "GrantID?">    // <!ELEMENT GrantID (#PCDATA)>    // <!ENTITY % Acronym.Ref "Acronym?">    // <!ELEMENT Acronym (#PCDATA)>    // <!ENTITY % Agency.Ref "Agency?">    // <!ELEMENT Agency (#PCDATA)>    static class Handler extends DelegateHandler {        private final TextAccumulatorHandler mGrantIDHandler             = new TextAccumulatorHandler();        private final TextAccumulatorHandler mAcronymHandler             = new TextAccumulatorHandler();        private final TextAccumulatorHandler mAgencyHandler             = new TextAccumulatorHandler();        public Handler(DelegatingHandler delegator) {            super(delegator);            setDelegate(MedlineCitationSet.GRANT_ID_ELT,                        mGrantIDHandler);            setDelegate(MedlineCitationSet.ACRONYM_ELT,                        mAcronymHandler);            setDelegate(MedlineCitationSet.AGENCY_ELT,                        mAgencyHandler);        }        public void reset() {            mGrantIDHandler.reset();            mAcronymHandler.reset();            mAgencyHandler.reset();        }        public void startDocument() throws SAXException {            super.startDocument();            reset();        }        public Grant getGrant() {            return new Grant(mGrantIDHandler.getText(),                             mAcronymHandler.getText(),                             mAgencyHandler.getText());        }    }}

⌨️ 快捷键说明

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