Package org.biojava.bibliography
Class BiblioJournal
- java.lang.Object
-
- org.biojava.bibliography.BiblioJournal
-
public class BiblioJournal extends java.lang.Object
A class describing journals. The citations referring to the journal articles have a reference to this class. There are only few explicit attributes defined, the rest are accessible using
dynamic properties
.- Since:
- 1.3
- Version:
- $Id: BiblioJournal.java 2812 2003-07-16 16:01:11Z mrp $
- Author:
- Martin Senger
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
abbreviation
An abbreviation of the journal title.java.lang.String
issn
A standard number for journals.java.lang.String
name
A journal title.java.util.Hashtable
properties
Additional properties used when the explicit attributes are not sufficient.
-
Constructor Summary
Constructors Constructor Description BiblioJournal()
-
-
-
Field Detail
-
properties
public java.util.Hashtable properties
Additional properties used when the explicit attributes are not sufficient.
-
name
public java.lang.String name
A journal title. The list of available titles can be provided using a controlled vocabulary, taken, for example, from MEDLINE Journals. Such controlled vocabulary should be namedBibRefSupport.JOURNAL_TITLES
.
-
issn
public java.lang.String issn
A standard number for journals.
Be aware, however, that in the real world even this attribute may change over time. Therefore, it is not suitable as a primary unique identifier for journals.
-
abbreviation
public java.lang.String abbreviation
An abbreviation of the journal title.
Note that some repositories use more abbreviation systems. For such cases, use
dynamic properties
for additional abbreviations.An example for biological journals is in Biological Journals and Abbreviations.
A controlled vocabulary with abbreviation should be namedBibRefSupport.JOURNAL_ABBREV
.
-
-