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 javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlType;
15

    
16

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

    
44
    @XmlElement(name = "funding_level_1")
45
    protected FundingType fundingLevel1;
46
    @XmlElement(name = "funding_level_0")
47
    protected FundingType fundingLevel0;
48

    
49
    /**
50
     * Gets the value of the fundingLevel1 property.
51
     * 
52
     * @return
53
     *     possible object is
54
     *     {@link FundingType }
55
     *     
56
     */
57
    public FundingType getFundingLevel1() {
58
        return fundingLevel1;
59
    }
60

    
61
    /**
62
     * Sets the value of the fundingLevel1 property.
63
     * 
64
     * @param value
65
     *     allowed object is
66
     *     {@link FundingType }
67
     *     
68
     */
69
    public void setFundingLevel1(FundingType value) {
70
        this.fundingLevel1 = value;
71
    }
72

    
73
    /**
74
     * Gets the value of the fundingLevel0 property.
75
     * 
76
     * @return
77
     *     possible object is
78
     *     {@link FundingType }
79
     *     
80
     */
81
    public FundingType getFundingLevel0() {
82
        return fundingLevel0;
83
    }
84

    
85
    /**
86
     * Sets the value of the fundingLevel0 property.
87
     * 
88
     * @param value
89
     *     allowed object is
90
     *     {@link FundingType }
91
     *     
92
     */
93
    public void setFundingLevel0(FundingType value) {
94
        this.fundingLevel0 = value;
95
    }
96

    
97
}
(11-11/29)