Stop installing librairies during tests
[parser.git] / verigraph / src / main / java / it / polito / nffg / neo4j / jaxb / NffgSet.java
1 /*******************************************************************************
2  * Copyright (c) 2017 Politecnico di Torino and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9
10 package it.polito.nffg.neo4j.jaxb;
11
12 import java.util.ArrayList;
13 import java.util.List;
14 import javax.xml.bind.annotation.XmlAccessType;
15 import javax.xml.bind.annotation.XmlAccessorType;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlRootElement;
18 import javax.xml.bind.annotation.XmlType;
19
20
21 /**
22  * <p>Java class for anonymous complex type.
23  * <p>The following schema fragment specifies the expected content contained within this class.
24  * <pre>
25  * &lt;complexType>
26  *   &lt;complexContent>
27  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  *       &lt;sequence>
29  *         &lt;element ref="{http://www.example.org/nffg/}nffg" maxOccurs="unbounded"/>
30  *       &lt;/sequence>
31  *     &lt;/restriction>
32  *   &lt;/complexContent>
33  * &lt;/complexType>
34  * </pre>
35  */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "", propOrder = {
38     "nffg"
39 })
40 @XmlRootElement(name = "nffg-set")
41 public class NffgSet {
42
43     @XmlElement(required = true)
44     protected List<Nffg> nffg;
45
46     /**
47      * Gets the value of the nffg property.
48      * <p>
49      * This accessor method returns a reference to the live list,
50      * not a snapshot. Therefore any modification you make to the
51      * returned list will be present inside the JAXB object.
52      * This is why there is not a <CODE>set</CODE> method for the nffg property.
53      * <p>
54      * For example, to add a new item, do as follows:
55      * <pre>
56      *    getNffg().add(newItem);
57      * </pre>
58      * <p>
59      * Objects of the following type(s) are allowed in the list
60      * {@link Nffg }
61      */
62     public List<Nffg> getNffg() {
63         if (nffg == null) {
64             nffg = new ArrayList<Nffg>();
65         }
66         return this.nffg;
67     }
68
69 }