001package com.hfg.citation.ncbi;
002
003import com.hfg.xml.XMLTag;
004
005
006//------------------------------------------------------------------------------
007/**
008 Data object for holding PubMed article data.
009 <br/>
010 See: <a href='https://www.nlm.nih.gov/bsd/licensee/elements_descriptions.html'>
011 https://www.nlm.nih.gov/bsd/licensee/elements_descriptions.html</a>
012
013 <div>
014 @author J. Alex Taylor, hairyfatguy.com
015 </div>
016 */
017//------------------------------------------------------------------------------
018// com.hfg XML/HTML Coding Library
019//
020// This library is free software; you can redistribute it and/or
021// modify it under the terms of the GNU Lesser General Public
022// License as published by the Free Software Foundation; either
023// version 2.1 of the License, or (at your option) any later version.
024//
025// This library is distributed in the hope that it will be useful,
026// but WITHOUT ANY WARRANTY; without even the implied warranty of
027// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
028// Lesser General Public License for more details.
029//
030// You should have received a copy of the GNU Lesser General Public
031// License along with this library; if not, write to the Free Software
032// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
033//
034// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
035// jataylor@hairyfatguy.com
036//------------------------------------------------------------------------------
037
038
039public class PubmedArticle
040{
041
042
043
044   private MedlineCitation mMedlineCitation;
045   private PubmedData      mPubmedData;
046
047   //###########################################################################
048   // CONSTRUCTORS
049   //###########################################################################
050
051   //---------------------------------------------------------------------------
052   public PubmedArticle(XMLTag inXMLTag)
053   {
054
055   }
056}