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

io.fixprotocol._2016.fixinterfaces.Annotation Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.09.19 at 11:25:31 AM CDT 
//


package io.fixprotocol._2016.fixinterfaces;

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.XmlElements;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for annotation complex type. * *

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

 * <complexType name="annotation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded">
 *         <element name="documentation" type="{http://fixprotocol.io/2016/fixinterfaces}documentation"/>
 *         <element name="appinfo" type="{http://fixprotocol.io/2016/fixinterfaces}appinfo"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "annotation", propOrder = { "documentationOrAppinfo" }) public class Annotation { @XmlElements({ @XmlElement(name = "documentation", type = Documentation.class), @XmlElement(name = "appinfo", type = Appinfo.class) }) protected List documentationOrAppinfo; /** * Gets the value of the documentationOrAppinfo 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 documentationOrAppinfo property. * *

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

     *    getDocumentationOrAppinfo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Documentation } * {@link Appinfo } * * */ public List getDocumentationOrAppinfo() { if (documentationOrAppinfo == null) { documentationOrAppinfo = new ArrayList(); } return this.documentationOrAppinfo; } }