package org.eurocarbdb.util.glycomedb.data; /** * Schema fragment(s) for this class: * <pre> * <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="errorType"> * <xs:simpleContent> * <xs:extension base="xs:string"> * <xs:attribute type="xs:string" use="optional" name="code"/> * <xs:attribute type="xs:string" use="required" name="title"/> * </xs:extension> * </xs:simpleContent> * </xs:complexType> * </pre> */ public class ErrorType { private String string; private String code; private String title; /** * Get the extension value. * * @return value */ public String getString() { return string; } /** * Set the extension value. * * @param string */ public void setString(String string) { this.string = string; } /** * Get the 'code' attribute value. * * @return value */ public String getCode() { return code; } /** * Set the 'code' attribute value. * * @param code */ public void setCode(String code) { this.code = code; } /** * Get the 'title' attribute value. * * @return value */ public String getTitle() { return title; } /** * Set the 'title' attribute value. * * @param title */ public void setTitle(String title) { this.title = title; } }