Coverage Report - fr.paris.lutece.plugins.address.business.jaxb.Famille
 
Classes in this File Line Coverage Branch Coverage Complexity
Famille
0 %
0/19
N/A
1
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs 
 3  
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 4  
 // Any modifications to this file will be lost upon recompilation of the source schema. 
 5  
 // Generated on: 2018.04.30 at 04:24:22 PM CEST 
 6  
 //
 7  
 
 8  
 
 9  
 package fr.paris.lutece.plugins.address.business.jaxb;
 10  
 
 11  
 import java.math.BigInteger;
 12  
 import javax.xml.bind.annotation.XmlAccessType;
 13  
 import javax.xml.bind.annotation.XmlAccessorType;
 14  
 import javax.xml.bind.annotation.XmlElement;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for famille complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType name="famille">
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;sequence>
 28  
  *         &lt;element name="nom" type="{}type_nom"/>
 29  
  *         &lt;element name="prenom" type="{}type_prenom"/>
 30  
  *         &lt;element name="telephone" type="{}type_telephone" minOccurs="0"/>
 31  
  *         &lt;element name="courriel" type="{}type_courriel" minOccurs="0"/>
 32  
  *         &lt;element name="nb-enfant" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
 33  
  *         &lt;element name="adresse" type="{}adresse"/>
 34  
  *       &lt;/sequence>
 35  
  *     &lt;/restriction>
 36  
  *   &lt;/complexContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "famille", propOrder = {
 44  
     "nom",
 45  
     "prenom",
 46  
     "telephone",
 47  
     "courriel",
 48  
     "nbEnfant",
 49  
     "adresse"
 50  
 })
 51  0
 public class Famille {
 52  
 
 53  
     @XmlElement(required = true)
 54  
     protected String nom;
 55  
     @XmlElement(required = true)
 56  
     protected String prenom;
 57  
     protected String telephone;
 58  
     protected String courriel;
 59  
     @XmlElement(name = "nb-enfant", required = true)
 60  
     protected BigInteger nbEnfant;
 61  
     @XmlElement(required = true)
 62  
     protected Adresse adresse;
 63  
 
 64  
     /**
 65  
      * Gets the value of the nom property.
 66  
      * 
 67  
      * @return
 68  
      *     possible object is
 69  
      *     {@link String }
 70  
      *     
 71  
      */
 72  
     public String getNom() {
 73  0
         return nom;
 74  
     }
 75  
 
 76  
     /**
 77  
      * Sets the value of the nom property.
 78  
      * 
 79  
      * @param value
 80  
      *     allowed object is
 81  
      *     {@link String }
 82  
      *     
 83  
      */
 84  
     public void setNom(String value) {
 85  0
         this.nom = value;
 86  0
     }
 87  
 
 88  
     /**
 89  
      * Gets the value of the prenom property.
 90  
      * 
 91  
      * @return
 92  
      *     possible object is
 93  
      *     {@link String }
 94  
      *     
 95  
      */
 96  
     public String getPrenom() {
 97  0
         return prenom;
 98  
     }
 99  
 
 100  
     /**
 101  
      * Sets the value of the prenom property.
 102  
      * 
 103  
      * @param value
 104  
      *     allowed object is
 105  
      *     {@link String }
 106  
      *     
 107  
      */
 108  
     public void setPrenom(String value) {
 109  0
         this.prenom = value;
 110  0
     }
 111  
 
 112  
     /**
 113  
      * Gets the value of the telephone property.
 114  
      * 
 115  
      * @return
 116  
      *     possible object is
 117  
      *     {@link String }
 118  
      *     
 119  
      */
 120  
     public String getTelephone() {
 121  0
         return telephone;
 122  
     }
 123  
 
 124  
     /**
 125  
      * Sets the value of the telephone property.
 126  
      * 
 127  
      * @param value
 128  
      *     allowed object is
 129  
      *     {@link String }
 130  
      *     
 131  
      */
 132  
     public void setTelephone(String value) {
 133  0
         this.telephone = value;
 134  0
     }
 135  
 
 136  
     /**
 137  
      * Gets the value of the courriel property.
 138  
      * 
 139  
      * @return
 140  
      *     possible object is
 141  
      *     {@link String }
 142  
      *     
 143  
      */
 144  
     public String getCourriel() {
 145  0
         return courriel;
 146  
     }
 147  
 
 148  
     /**
 149  
      * Sets the value of the courriel property.
 150  
      * 
 151  
      * @param value
 152  
      *     allowed object is
 153  
      *     {@link String }
 154  
      *     
 155  
      */
 156  
     public void setCourriel(String value) {
 157  0
         this.courriel = value;
 158  0
     }
 159  
 
 160  
     /**
 161  
      * Gets the value of the nbEnfant property.
 162  
      * 
 163  
      * @return
 164  
      *     possible object is
 165  
      *     {@link BigInteger }
 166  
      *     
 167  
      */
 168  
     public BigInteger getNbEnfant() {
 169  0
         return nbEnfant;
 170  
     }
 171  
 
 172  
     /**
 173  
      * Sets the value of the nbEnfant property.
 174  
      * 
 175  
      * @param value
 176  
      *     allowed object is
 177  
      *     {@link BigInteger }
 178  
      *     
 179  
      */
 180  
     public void setNbEnfant(BigInteger value) {
 181  0
         this.nbEnfant = value;
 182  0
     }
 183  
 
 184  
     /**
 185  
      * Gets the value of the adresse property.
 186  
      * 
 187  
      * @return
 188  
      *     possible object is
 189  
      *     {@link Adresse }
 190  
      *     
 191  
      */
 192  
     public Adresse getAdresse() {
 193  0
         return adresse;
 194  
     }
 195  
 
 196  
     /**
 197  
      * Sets the value of the adresse property.
 198  
      * 
 199  
      * @param value
 200  
      *     allowed object is
 201  
      *     {@link Adresse }
 202  
      *     
 203  
      */
 204  
     public void setAdresse(Adresse value) {
 205  0
         this.adresse = value;
 206  0
     }
 207  
 
 208  
 }