001// BiblioPerson.java
002//
003//    senger@ebi.ac.uk
004//    March 2001
005//
006
007/*
008 *                    BioJava development code
009 *
010 * This code may be freely distributed and modified under the
011 * terms of the GNU Lesser General Public Licence.  This should
012 * be distributed with the code.  If you do not have a copy,
013 * see:
014 *
015 *      http://www.gnu.org/copyleft/lesser.html
016 *
017 * Copyright for this code is held jointly by the individual
018 * authors.  These should be listed in @author doc comments.
019 *
020 * For more information on the BioJava project and its aims,
021 * or to join the biojava-l mailing list, visit the home page
022 * at:
023 *
024 *      http://www.biojava.org/
025 *
026 */
027package org.biojava.bibliography;
028
029/**
030 * <p>
031 * It represents a person dealing with the bibliographic resources.
032 * </p>
033 *
034 * @author <A HREF="mailto:senger@ebi.ac.uk">Martin Senger</A>
035 * @version $Id$
036 * @since 1.3
037 */
038
039public class BiblioPerson
040    extends BiblioProvider {
041
042  /**
043   * The person's sirname (family name).
044   */
045    public String surname;
046
047  /**
048   * The person's christian name (first name).
049   */
050    public String firstName;
051
052  /**
053   * Any middle innitials.
054   */
055    public String midInitials;
056
057  /**
058   * Their e-mail address.
059   */
060    public String email;
061
062  /**
063   * Their postal address.
064   */
065    public String postalAddress;
066
067  /**
068   * Their affiliation.
069   */
070    public String affiliation;
071
072}