Project

General

Profile

1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
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: 2014.05.29 at 10:46:46 AM CEST 
6
//
7

    
8

    
9
package eu.dnetlib.schema.oaf;
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.XmlType;
16

    
17

    
18
/**
19
 * Relationships to other entities.
20
 * 
21
 * <p>Java class for relsType complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType name="relsType">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence maxOccurs="unbounded" minOccurs="0">
30
 *         &lt;element name="rel" type="{http://namespace.openaire.eu/oaf}relType" minOccurs="0"/>
31
 *       &lt;/sequence>
32
 *     &lt;/restriction>
33
 *   &lt;/complexContent>
34
 * &lt;/complexType>
35
 * </pre>
36
 * 
37
 * 
38
 */
39
@XmlAccessorType(XmlAccessType.FIELD)
40
@XmlType(name = "relsType", propOrder = {
41
    "rel"
42
})
43
public class RelsType {
44

    
45
    protected List<RelType> rel;
46

    
47
    /**
48
     * Gets the value of the rel property.
49
     * 
50
     * <p>
51
     * This accessor method returns a reference to the live list,
52
     * not a snapshot. Therefore any modification you make to the
53
     * returned list will be present inside the JAXB object.
54
     * This is why there is not a <CODE>set</CODE> method for the rel property.
55
     * 
56
     * <p>
57
     * For example, to add a new item, do as follows:
58
     * <pre>
59
     *    getRel().add(newItem);
60
     * </pre>
61
     * 
62
     * 
63
     * <p>
64
     * Objects of the following type(s) are allowed in the list
65
     * {@link RelType }
66
     * 
67
     * 
68
     */
69
    public List<RelType> getRel() {
70
        if (rel == null) {
71
            rel = new ArrayList<RelType>();
72
        }
73
        return this.rel;
74
    }
75

    
76
}
(25-25/29)