Package eu.openaire.oaf.model.base
Class FundingTreeType
- java.lang.Object
-
- eu.openaire.oaf.model.base.FundingTreeType
-
- All Implemented Interfaces:
Serializable
public class FundingTreeType extends Object implements Serializable
Java class for fundingTreeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="fundingTreeType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="funder" type="{http://namespace.openaire.eu/oaf}funderType"/> <choice maxOccurs="unbounded"> <element name="funding_level_2" type="{http://namespace.openaire.eu/oaf}fundingType"/> <element name="funding_level_1" type="{http://namespace.openaire.eu/oaf}fundingType"/> <element name="funding_level_0" type="{http://namespace.openaire.eu/oaf}fundingType"/> </choice> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected FunderTypefunderprotected List<javax.xml.bind.JAXBElement<FundingType>>fundingLevel2OrFundingLevel1OrFundingLevel0
-
Constructor Summary
Constructors Constructor Description FundingTreeType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FunderTypegetFunder()Gets the value of the funder property.List<javax.xml.bind.JAXBElement<FundingType>>getFundingLevel2OrFundingLevel1OrFundingLevel0()Gets the value of the fundingLevel2OrFundingLevel1OrFundingLevel0 property.voidsetFunder(FunderType value)Sets the value of the funder property.
-
-
-
Field Detail
-
funder
protected FunderType funder
-
fundingLevel2OrFundingLevel1OrFundingLevel0
protected List<javax.xml.bind.JAXBElement<FundingType>> fundingLevel2OrFundingLevel1OrFundingLevel0
-
-
Method Detail
-
getFunder
public FunderType getFunder()
Gets the value of the funder property.- Returns:
- possible object is
FunderType
-
setFunder
public void setFunder(FunderType value)
Sets the value of the funder property.- Parameters:
value- allowed object isFunderType
-
getFundingLevel2OrFundingLevel1OrFundingLevel0
public List<javax.xml.bind.JAXBElement<FundingType>> getFundingLevel2OrFundingLevel1OrFundingLevel0()
Gets the value of the fundingLevel2OrFundingLevel1OrFundingLevel0 property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the fundingLevel2OrFundingLevel1OrFundingLevel0 property.For example, to add a new item, do as follows:
getFundingLevel2OrFundingLevel1OrFundingLevel0().add(newItem);Objects of the following type(s) are allowed in the list
JAXBElement<FundingType>JAXBElement<FundingType>JAXBElement<FundingType>
-
-