
org.biojava.nbio.structure.validation.WwPDBValidationInformation Maven / Gradle / Ivy
Show all versions of biojava-structure Show documentation
/*
* BioJava development code
*
* This code may be freely distributed and modified under the
* terms of the GNU Lesser General Public Licence. This should
* be distributed with the code. If you do not have a copy,
* see:
*
* http://www.gnu.org/copyleft/lesser.html
*
* Copyright for this code is held jointly by the individual
* authors. These should be listed in @author doc comments.
*
* For more information on the BioJava project and its aims,
* or to join the biojava-l mailing list, visit the home page
* at:
*
* http://www.biojava.org/
*
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.12.17 at 03:04:15 PM PST
//
package org.biojava.nbio.structure.validation;
import javax.xml.bind.annotation.*;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{}Entry"/>
* <element ref="{}ModelledSubgroup" maxOccurs="unbounded"/>
* <element ref="{}programs"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"entry",
"modelledSubgroup",
"programs"
})
@XmlRootElement(name = "wwPDB-validation-information")
public class WwPDBValidationInformation implements Serializable {
private static final long serialVersionUID = -996804963717482650L;
@XmlElement(name = "Entry", required = true)
protected Entry entry;
@XmlElement(name = "ModelledSubgroup", required = true)
protected List modelledSubgroup;
@XmlElement(required = true)
protected Programs programs;
/**
* Gets the value of the entry property.
*
* @return
* possible object is
* {@link Entry }
*
*/
public Entry getEntry() {
return entry;
}
/**
* Sets the value of the entry property.
*
* @param value
* allowed object is
* {@link Entry }
*
*/
public void setEntry(Entry value) {
this.entry = value;
}
/**
* Gets the value of the modelledSubgroup 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 modelledSubgroup property.
*
*
* For example, to add a new item, do as follows:
*
* getModelledSubgroup().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ModelledSubgroup }
*
*
*/
public List getModelledSubgroup() {
if (modelledSubgroup == null) {
modelledSubgroup = new ArrayList();
}
return this.modelledSubgroup;
}
/**
* Gets the value of the programs property.
*
* @return
* possible object is
* {@link Programs }
*
*/
public Programs getPrograms() {
return programs;
}
/**
* Sets the value of the programs property.
*
* @param value
* allowed object is
* {@link Programs }
*
*/
public void setPrograms(Programs value) {
this.programs = value;
}
}