// // Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.11 // Voir <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source. // Généré le : 2014.12.23 à 08:41:56 PM CET // package org.transgalactica.info.flux.motd; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Classe Java pour image complex type. * * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * * <pre> * <complexType name="image"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="url" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="texteAlternatif" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "image") public class Image { @XmlAttribute(name = "url", required = true) @XmlSchemaType(name = "anyURI") protected String url; @XmlAttribute(name = "texteAlternatif") protected String texteAlternatif; /** * Obtient la valeur de la propriété url. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Définit la valeur de la propriété url. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * Obtient la valeur de la propriété texteAlternatif. * * @return * possible object is * {@link String } * */ public String getTexteAlternatif() { return texteAlternatif; } /** * Définit la valeur de la propriété texteAlternatif. * * @param value * allowed object is * {@link String } * */ public void setTexteAlternatif(String value) { this.texteAlternatif = value; } }