// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.04.16 at 12:23:52 PM PDT // package dtd.kegg; 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.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "entry", "relation", "reaction" }) @XmlRootElement(name = "pathway") public class Pathway { @XmlAttribute(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String name; @XmlAttribute(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String number; @XmlAttribute(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String org; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String title; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String image; @XmlAttribute @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String link; protected List entry; protected List relation; protected List reaction; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } /** * Gets the value of the org property. * * @return * possible object is * {@link String } * */ public String getOrg() { return org; } /** * Sets the value of the org property. * * @param value * allowed object is * {@link String } * */ public void setOrg(String value) { this.org = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the image property. * * @return * possible object is * {@link String } * */ public String getImage() { return image; } /** * Sets the value of the image property. * * @param value * allowed object is * {@link String } * */ public void setImage(String value) { this.image = value; } /** * Gets the value of the link property. * * @return * possible object is * {@link String } * */ public String getLink() { return link; } /** * Sets the value of the link property. * * @param value * allowed object is * {@link String } * */ public void setLink(String value) { this.link = value; } /** * Gets the value of the entry 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 entry property. * *

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

     *    getEntry().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Entry } * * */ public List getEntry() { if (entry == null) { entry = new ArrayList(); } return this.entry; } /** * Gets the value of the relation 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 relation property. * *

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

     *    getRelation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Relation } * * */ public List getRelation() { if (relation == null) { relation = new ArrayList(); } return this.relation; } /** * Gets the value of the reaction 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 reaction property. * *

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

     *    getReaction().add(newItem);
     * 
* * *

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