Package eu.openaire.oaf
Class FundingTreeType
java.lang.Object
eu.openaire.oaf.FundingTreeType
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>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected FunderTypeprotected List<jakarta.xml.bind.JAXBElement<FundingType>> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the funder property.List<jakarta.xml.bind.JAXBElement<FundingType>>Gets the value of the fundingLevel2OrFundingLevel1OrFundingLevel0 property.voidsetFunder(FunderType value) Sets the value of the funder property.
-
Field Details
-
funder
-
fundingLevel2OrFundingLevel1OrFundingLevel0
protected List<jakarta.xml.bind.JAXBElement<FundingType>> fundingLevel2OrFundingLevel1OrFundingLevel0
-
-
Constructor Details
-
FundingTreeType
public FundingTreeType()
-
-
Method Details
-
getFunder
Gets the value of the funder property.- Returns:
- possible object is
FunderType
-
setFunder
Sets the value of the funder property.- Parameters:
value- allowed object isFunderType
-
getFundingLevel2OrFundingLevel1OrFundingLevel0
public List<jakarta.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 Jakarta XML Binding 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>
-