1 | //
|
---|
2 | // Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.5
|
---|
3 | // Voir <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
---|
4 | // Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
|
---|
5 | // Généré le : 2012.03.08 à 06:24:59 PM CET
|
---|
6 | //
|
---|
7 |
|
---|
8 |
|
---|
9 | package neptune;
|
---|
10 |
|
---|
11 | import java.util.ArrayList;
|
---|
12 | import java.util.List;
|
---|
13 | import javax.xml.bind.annotation.XmlAccessType;
|
---|
14 | import javax.xml.bind.annotation.XmlAccessorType;
|
---|
15 | import javax.xml.bind.annotation.XmlElement;
|
---|
16 | import javax.xml.bind.annotation.XmlType;
|
---|
17 |
|
---|
18 |
|
---|
19 | /**
|
---|
20 | * Type for accessibility needs. Records the requirementrs of a passenger that may affect chocie of facilities
|
---|
21 | *
|
---|
22 | * <p>Classe Java pour PassengerAccessibilityNeedsStructure complex type.
|
---|
23 | *
|
---|
24 | * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
|
---|
25 | *
|
---|
26 | * <pre>
|
---|
27 | * <complexType name="PassengerAccessibilityNeedsStructure">
|
---|
28 | * <complexContent>
|
---|
29 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
---|
30 | * <sequence>
|
---|
31 | * <element name="UserNeed" type="{http://www.ifopt.org.uk/acsb}UserNeedStructure" maxOccurs="unbounded" minOccurs="0"/>
|
---|
32 | * <element name="AccompaniedByCarer" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
---|
33 | * </sequence>
|
---|
34 | * </restriction>
|
---|
35 | * </complexContent>
|
---|
36 | * </complexType>
|
---|
37 | * </pre>
|
---|
38 | *
|
---|
39 | *
|
---|
40 | */
|
---|
41 | @XmlAccessorType(XmlAccessType.FIELD)
|
---|
42 | @XmlType(name = "PassengerAccessibilityNeedsStructure", namespace = "http://www.ifopt.org.uk/acsb", propOrder = {
|
---|
43 | "userNeed",
|
---|
44 | "accompaniedByCarer"
|
---|
45 | })
|
---|
46 | public class PassengerAccessibilityNeedsStructure {
|
---|
47 |
|
---|
48 | @XmlElement(name = "UserNeed")
|
---|
49 | protected List<UserNeedStructure> userNeed;
|
---|
50 | @XmlElement(name = "AccompaniedByCarer")
|
---|
51 | protected Boolean accompaniedByCarer;
|
---|
52 |
|
---|
53 | /**
|
---|
54 | * Gets the value of the userNeed property.
|
---|
55 | *
|
---|
56 | * <p>
|
---|
57 | * This accessor method returns a reference to the live list,
|
---|
58 | * not a snapshot. Therefore any modification you make to the
|
---|
59 | * returned list will be present inside the JAXB object.
|
---|
60 | * This is why there is not a <CODE>set</CODE> method for the userNeed property.
|
---|
61 | *
|
---|
62 | * <p>
|
---|
63 | * For example, to add a new item, do as follows:
|
---|
64 | * <pre>
|
---|
65 | * getUserNeed().add(newItem);
|
---|
66 | * </pre>
|
---|
67 | *
|
---|
68 | *
|
---|
69 | * <p>
|
---|
70 | * Objects of the following type(s) are allowed in the list
|
---|
71 | * {@link UserNeedStructure }
|
---|
72 | *
|
---|
73 | *
|
---|
74 | */
|
---|
75 | public List<UserNeedStructure> getUserNeed() {
|
---|
76 | if (userNeed == null) {
|
---|
77 | userNeed = new ArrayList<UserNeedStructure>();
|
---|
78 | }
|
---|
79 | return this.userNeed;
|
---|
80 | }
|
---|
81 |
|
---|
82 | /**
|
---|
83 | * Obtient la valeur de la propriété accompaniedByCarer.
|
---|
84 | *
|
---|
85 | * @return
|
---|
86 | * possible object is
|
---|
87 | * {@link Boolean }
|
---|
88 | *
|
---|
89 | */
|
---|
90 | public Boolean isAccompaniedByCarer() {
|
---|
91 | return accompaniedByCarer;
|
---|
92 | }
|
---|
93 |
|
---|
94 | /**
|
---|
95 | * Définit la valeur de la propriété accompaniedByCarer.
|
---|
96 | *
|
---|
97 | * @param value
|
---|
98 | * allowed object is
|
---|
99 | * {@link Boolean }
|
---|
100 | *
|
---|
101 | */
|
---|
102 | public void setAccompaniedByCarer(Boolean value) {
|
---|
103 | this.accompaniedByCarer = value;
|
---|
104 | }
|
---|
105 |
|
---|
106 | }
|
---|