2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2018.12.20 at 11:47:26 AM GMT
9 package jalview.xml.binding.jalview;
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAttribute;
16 import javax.xml.bind.annotation.XmlSeeAlso;
17 import javax.xml.bind.annotation.XmlType;
21 * <p>Java class for pdbentry complex type.
23 * <p>The following schema fragment specifies the expected content contained within this class.
26 * <complexType name="pdbentry">
28 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29 * <sequence maxOccurs="unbounded" minOccurs="0">
30 * <element name="property" maxOccurs="unbounded" minOccurs="0">
33 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
34 * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
35 * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
37 * </complexContent>
41 * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
42 * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
43 * <attribute name="file" type="{http://www.w3.org/2001/XMLSchema}string" />
45 * </complexContent>
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name = "pdbentry", namespace = "www.jalview.org", propOrder = {
56 jalview.xml.binding.jalview.JalviewModel.JSeq.Pdbids.class
58 public class Pdbentry {
60 protected List<Pdbentry.Property> property;
61 @XmlAttribute(name = "id", required = true)
63 @XmlAttribute(name = "type")
64 protected String type;
65 @XmlAttribute(name = "file")
66 protected String file;
69 * Gets the value of the property property.
72 * This accessor method returns a reference to the live list,
73 * not a snapshot. Therefore any modification you make to the
74 * returned list will be present inside the JAXB object.
75 * This is why there is not a <CODE>set</CODE> method for the property property.
78 * For example, to add a new item, do as follows:
80 * getProperty().add(newItem);
85 * Objects of the following type(s) are allowed in the list
86 * {@link Pdbentry.Property }
90 public List<Pdbentry.Property> getProperty() {
91 if (property == null) {
92 property = new ArrayList<Pdbentry.Property>();
98 * Gets the value of the id property.
105 public String getId() {
110 * Sets the value of the id property.
117 public void setId(String value) {
122 * Gets the value of the type property.
129 public String getType() {
134 * Sets the value of the type property.
141 public void setType(String value) {
146 * Gets the value of the file property.
153 public String getFile() {
158 * Sets the value of the file property.
165 public void setFile(String value) {
171 * <p>Java class for anonymous complex type.
173 * <p>The following schema fragment specifies the expected content contained within this class.
177 * <complexContent>
178 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
179 * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
180 * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
182 * </complexContent>
188 @XmlAccessorType(XmlAccessType.FIELD)
190 public static class Property {
192 @XmlAttribute(name = "name", required = true)
193 protected String name;
194 @XmlAttribute(name = "value", required = true)
195 protected String value;
198 * Gets the value of the name property.
205 public String getName() {
210 * Sets the value of the name property.
217 public void setName(String value) {
222 * Gets the value of the value property.
229 public String getValue() {
234 * Sets the value of the value property.
241 public void setValue(String value) {