001// 002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920 003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004// Any modifications to this file will be lost upon recompilation of the source schema. 005// Generated on: 2015.06.22 at 10:44:47 AM CDT 006// 007 008 009package org.nmdp.ngs.gtr.jaxb; 010 011import javax.xml.bind.annotation.XmlAccessType; 012import javax.xml.bind.annotation.XmlAccessorType; 013import javax.xml.bind.annotation.XmlElement; 014import javax.xml.bind.annotation.XmlSchemaType; 015import javax.xml.bind.annotation.XmlType; 016 017 018/** 019 * <p>Java class for TextURL complex type. 020 * 021 * <p>The following schema fragment specifies the expected content contained within this class. 022 * 023 * <pre> 024 * <complexType name="TextURL"> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <sequence> 028 * <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 029 * <element name="URL" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/> 030 * </sequence> 031 * </restriction> 032 * </complexContent> 033 * </complexType> 034 * </pre> 035 * 036 * 037 */ 038@XmlAccessorType(XmlAccessType.FIELD) 039@XmlType(name = "TextURL", propOrder = { 040 "description", 041 "url" 042}) 043public class TextURL { 044 045 @XmlElement(name = "Description") 046 protected String description; 047 @XmlElement(name = "URL") 048 @XmlSchemaType(name = "anyURI") 049 protected String url; 050 051 /** 052 * Gets the value of the description property. 053 * 054 * @return 055 * possible object is 056 * {@link String } 057 * 058 */ 059 public String getDescription() { 060 return description; 061 } 062 063 /** 064 * Sets the value of the description property. 065 * 066 * @param value 067 * allowed object is 068 * {@link String } 069 * 070 */ 071 public void setDescription(String value) { 072 this.description = value; 073 } 074 075 /** 076 * Gets the value of the url property. 077 * 078 * @return 079 * possible object is 080 * {@link String } 081 * 082 */ 083 public String getURL() { 084 return url; 085 } 086 087 /** 088 * Sets the value of the url property. 089 * 090 * @param value 091 * allowed object is 092 * {@link String } 093 * 094 */ 095 public void setURL(String value) { 096 this.url = value; 097 } 098 099}