com.github.markusbernhardt.xmldoclet.xjc.Wildcard Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2013.10.18 um 03:56:47 PM CEST
//
package com.github.markusbernhardt.xmldoclet.xjc;
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.XmlType;
/**
* Java-Klasse für wildcard complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="wildcard">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="extendsBound" type="{}typeInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="superBound" type="{}typeInfo" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "wildcard", propOrder = {
"extendsBound",
"superBound"
})
public class Wildcard {
protected List extendsBound;
protected List superBound;
/**
* Gets the value of the extendsBound 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 extendsBound property.
*
*
* For example, to add a new item, do as follows:
*
* getExtendsBound().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TypeInfo }
*
*
*/
public List getExtendsBound() {
if (extendsBound == null) {
extendsBound = new ArrayList();
}
return this.extendsBound;
}
/**
* Gets the value of the superBound 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 superBound property.
*
*
* For example, to add a new item, do as follows:
*
* getSuperBound().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TypeInfo }
*
*
*/
public List getSuperBound() {
if (superBound == null) {
superBound = new ArrayList();
}
return this.superBound;
}
}