All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.nasa.arc.pds.xml.generated.CitationInformation Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.4 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.10 at 07:24:03 AM GMT 
//


package gov.nasa.arc.pds.xml.generated;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The Citation_Information class provides specific
 *         fields often used in citing the product in journal articles,
 *         abstract services, and other reference
 *         contexts.
 * 
 * 

Java class for Citation_Information complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Citation_Information">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="author_list" type="{http://pds.nasa.gov/pds4/pds/v1}author_list" minOccurs="0"/>
 *         <element name="editor_list" type="{http://pds.nasa.gov/pds4/pds/v1}editor_list" minOccurs="0"/>
 *         <element name="publication_year" type="{http://pds.nasa.gov/pds4/pds/v1}publication_year"/>
 *         <element name="doi" type="{http://pds.nasa.gov/pds4/pds/v1}doi" minOccurs="0"/>
 *         <element name="keyword" type="{http://pds.nasa.gov/pds4/pds/v1}keyword" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Citation_Information", propOrder = { "authorList", "editorList", "publicationYear", "doi", "keywords", "description" }) public class CitationInformation { @XmlElement(name = "author_list") protected String authorList; @XmlElement(name = "editor_list") protected String editorList; @XmlElement(name = "publication_year", required = true) protected String publicationYear; protected String doi; @XmlElement(name = "keyword") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List keywords; @XmlElement(required = true) protected String description; /** * Gets the value of the authorList property. * * @return * possible object is * {@link String } * */ public String getAuthorList() { return authorList; } /** * Sets the value of the authorList property. * * @param value * allowed object is * {@link String } * */ public void setAuthorList(String value) { this.authorList = value; } /** * Gets the value of the editorList property. * * @return * possible object is * {@link String } * */ public String getEditorList() { return editorList; } /** * Sets the value of the editorList property. * * @param value * allowed object is * {@link String } * */ public void setEditorList(String value) { this.editorList = value; } /** * Gets the value of the publicationYear property. * * @return * possible object is * {@link String } * */ public String getPublicationYear() { return publicationYear; } /** * Sets the value of the publicationYear property. * * @param value * allowed object is * {@link String } * */ public void setPublicationYear(String value) { this.publicationYear = value; } /** * Gets the value of the doi property. * * @return * possible object is * {@link String } * */ public String getDoi() { return doi; } /** * Sets the value of the doi property. * * @param value * allowed object is * {@link String } * */ public void setDoi(String value) { this.doi = value; } /** * Gets the value of the keywords property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the keywords property. * *

* For example, to add a new item, do as follows: *

     *    getKeywords().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getKeywords() { if (keywords == null) { keywords = new ArrayList(); } return this.keywords; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy