Class FundingReference
- java.lang.Object
-
- org.icatproject.EntityBaseBean
-
- org.icatproject.FundingReference
-
public class FundingReference extends EntityBaseBean
Java class for fundingReference complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="fundingReference"> <complexContent> <extension base="{http://icatproject.org}entityBaseBean"> <sequence> <element name="awardNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="awardTitle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="funderIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="funderName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="investigations" type="{http://icatproject.org}investigationFunding" maxOccurs="unbounded" minOccurs="0"/> <element name="publications" type="{http://icatproject.org}dataPublicationFunding" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringawardNumberprotected StringawardTitleprotected StringfunderIdentifierprotected StringfunderNameprotected List<InvestigationFunding>investigationsprotected List<DataPublicationFunding>publications-
Fields inherited from class org.icatproject.EntityBaseBean
createId, createTime, id, modId, modTime
-
-
Constructor Summary
Constructors Constructor Description FundingReference()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAwardNumber()Gets the value of the awardNumber property.StringgetAwardTitle()Gets the value of the awardTitle property.StringgetFunderIdentifier()Gets the value of the funderIdentifier property.StringgetFunderName()Gets the value of the funderName property.List<InvestigationFunding>getInvestigations()Gets the value of the investigations property.List<DataPublicationFunding>getPublications()Gets the value of the publications property.voidsetAwardNumber(String value)Sets the value of the awardNumber property.voidsetAwardTitle(String value)Sets the value of the awardTitle property.voidsetFunderIdentifier(String value)Sets the value of the funderIdentifier property.voidsetFunderName(String value)Sets the value of the funderName property.-
Methods inherited from class org.icatproject.EntityBaseBean
getCreateId, getCreateTime, getId, getModId, getModTime, setCreateId, setCreateTime, setId, setModId, setModTime
-
-
-
-
Field Detail
-
awardNumber
protected String awardNumber
-
awardTitle
protected String awardTitle
-
funderIdentifier
protected String funderIdentifier
-
funderName
protected String funderName
-
investigations
protected List<InvestigationFunding> investigations
-
publications
protected List<DataPublicationFunding> publications
-
-
Method Detail
-
getAwardNumber
public String getAwardNumber()
Gets the value of the awardNumber property.- Returns:
- possible object is
String
-
setAwardNumber
public void setAwardNumber(String value)
Sets the value of the awardNumber property.- Parameters:
value- allowed object isString
-
getAwardTitle
public String getAwardTitle()
Gets the value of the awardTitle property.- Returns:
- possible object is
String
-
setAwardTitle
public void setAwardTitle(String value)
Sets the value of the awardTitle property.- Parameters:
value- allowed object isString
-
getFunderIdentifier
public String getFunderIdentifier()
Gets the value of the funderIdentifier property.- Returns:
- possible object is
String
-
setFunderIdentifier
public void setFunderIdentifier(String value)
Sets the value of the funderIdentifier property.- Parameters:
value- allowed object isString
-
getFunderName
public String getFunderName()
Gets the value of the funderName property.- Returns:
- possible object is
String
-
setFunderName
public void setFunderName(String value)
Sets the value of the funderName property.- Parameters:
value- allowed object isString
-
getInvestigations
public List<InvestigationFunding> getInvestigations()
Gets the value of the investigations 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 investigations property.For example, to add a new item, do as follows:
getInvestigations().add(newItem);Objects of the following type(s) are allowed in the list
InvestigationFunding
-
getPublications
public List<DataPublicationFunding> getPublications()
Gets the value of the publications 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 publications property.For example, to add a new item, do as follows:
getPublications().add(newItem);Objects of the following type(s) are allowed in the list
DataPublicationFunding
-
-