Class FundingFlatType
- java.lang.Object
-
- eu.openaire.oaf.model.base.FundingFlatType
-
- All Implemented Interfaces:
Serializable
public class FundingFlatType extends Object implements Serializable
Java class for fundingFlatType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="fundingFlatType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="funder" type="{http://namespace.openaire.eu/oaf}funderFlatType"/> <element name="funding_level_0" type="{http://namespace.openaire.eu/oaf}namedFundingLevel" maxOccurs="unbounded" minOccurs="0"/> <element name="funding_level_1" type="{http://namespace.openaire.eu/oaf}namedFundingLevel" maxOccurs="unbounded" minOccurs="0"/> <element name="funding_level_2" type="{http://namespace.openaire.eu/oaf}namedFundingLevel" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected FunderFlatTypefunderprotected List<NamedFundingLevel>fundingLevel0protected List<NamedFundingLevel>fundingLevel1protected List<NamedFundingLevel>fundingLevel2
-
Constructor Summary
Constructors Constructor Description FundingFlatType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FunderFlatTypegetFunder()Gets the value of the funder property.List<NamedFundingLevel>getFundingLevel0()Gets the value of the fundingLevel0 property.List<NamedFundingLevel>getFundingLevel1()Gets the value of the fundingLevel1 property.List<NamedFundingLevel>getFundingLevel2()Gets the value of the fundingLevel2 property.voidsetFunder(FunderFlatType value)Sets the value of the funder property.
-
-
-
Field Detail
-
funder
protected FunderFlatType funder
-
fundingLevel0
protected List<NamedFundingLevel> fundingLevel0
-
fundingLevel1
protected List<NamedFundingLevel> fundingLevel1
-
fundingLevel2
protected List<NamedFundingLevel> fundingLevel2
-
-
Method Detail
-
getFunder
public FunderFlatType getFunder()
Gets the value of the funder property.- Returns:
- possible object is
FunderFlatType
-
setFunder
public void setFunder(FunderFlatType value)
Sets the value of the funder property.- Parameters:
value- allowed object isFunderFlatType
-
getFundingLevel0
public List<NamedFundingLevel> getFundingLevel0()
Gets the value of the fundingLevel0 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 fundingLevel0 property.For example, to add a new item, do as follows:
getFundingLevel0().add(newItem);Objects of the following type(s) are allowed in the list
NamedFundingLevel
-
getFundingLevel1
public List<NamedFundingLevel> getFundingLevel1()
Gets the value of the fundingLevel1 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 fundingLevel1 property.For example, to add a new item, do as follows:
getFundingLevel1().add(newItem);Objects of the following type(s) are allowed in the list
NamedFundingLevel
-
getFundingLevel2
public List<NamedFundingLevel> getFundingLevel2()
Gets the value of the fundingLevel2 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 fundingLevel2 property.For example, to add a new item, do as follows:
getFundingLevel2().add(newItem);Objects of the following type(s) are allowed in the list
NamedFundingLevel
-
-