// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.07.02 at 11:33:18 AM BST // package uk.ac.ebi.ep.data.enzyme.model; import java.io.Serializable; /** * <p>Java class for EcClass complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * * */ public class EcClass implements Serializable { protected String ec; protected String name; /** * Gets the value of the ec property. * * @return * possible object is * {@link String } * */ public String getEc() { return ec; } /** * Sets the value of the ec property. * * @param value * allowed object is * {@link String } * */ public void setEc(String value) { this.ec = value; } /** * 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; } public EcClass withEc(String value) { setEc(value); return this; } public EcClass withName(String value) { setName(value); return this; } }