// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-fcs // 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: 2009.06.03 at 01:03:34 AM EDT // package org.mindinformatics.services.connector.pubmed.fetch; 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.XmlValue; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="lang"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="PL"/> * <enumeration value="PS"/> * <enumeration value="PT"/> * <enumeration value="EL"/> * <enumeration value="EN"/> * <enumeration value="FA"/> * <enumeration value="ES"/> * <enumeration value="FI"/> * <enumeration value="RO"/> * <enumeration value="FR"/> * <enumeration value="RU"/> * <enumeration value="SK"/> * <enumeration value="SL"/> * <enumeration value="SQ"/> * <enumeration value="SR"/> * <enumeration value="SV"/> * <enumeration value="HE"/> * <enumeration value="SW"/> * <enumeration value="TH"/> * <enumeration value="TR"/> * <enumeration value="HU"/> * <enumeration value="HY"/> * <enumeration value="UK"/> * <enumeration value="IN"/> * <enumeration value="JA"/> * <enumeration value="IS"/> * <enumeration value="IT"/> * <enumeration value="IW"/> * <enumeration value="VI"/> * <enumeration value="KA"/> * <enumeration value="KO"/> * <enumeration value="LT"/> * <enumeration value="AF"/> * <enumeration value="MK"/> * <enumeration value="ML"/> * <enumeration value="AR"/> * <enumeration value="ZH"/> * <enumeration value="BG"/> * <enumeration value="AZ"/> * <enumeration value="NL"/> * <enumeration value="NO"/> * <enumeration value="DA"/> * <enumeration value="CS"/> * <enumeration value="DE"/> * </restriction> * </simpleType> * </attribute> * <attribute name="Type"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="fulltext"/> * <enumeration value="FullText"/> * <enumeration value="Summary"/> * <enumeration value="summary"/> * </restriction> * </simpleType> * </attribute> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "URL") public class URL { @XmlValue protected String content; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String lang; @XmlAttribute(name = "Type") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String type; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }