package model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Classe Java pour personne complex type. * * <p>Le fragment de sch�ma suivant indique le contenu attendu figurant dans cette classe. * * <pre> * <complexType name="personne"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="nom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="prenom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "personne", propOrder = { "nom", "prenom" }) public class Personne { protected String nom; protected String prenom; /** * Obtient la valeur de la propri�t� nom. * * @return * possible object is * {@link String } * */ public String getNom() { return nom; } /** * D�finit la valeur de la propri�t� nom. * * @param value * allowed object is * {@link String } * */ public void setNom(String value) { this.nom = value; } /** * Obtient la valeur de la propri�t� prenom. * * @return * possible object is * {@link String } * */ public String getPrenom() { return prenom; } /** * D�finit la valeur de la propri�t� prenom. * * @param value * allowed object is * {@link String } * */ public void setPrenom(String value) { this.prenom = value; } }