Class Result
- java.lang.Object
-
- pt.cienciavitae.ns.search.Result
-
public class Result extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element ref="{http://www.cienciavitae.pt/ns/person}person" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.cienciavitae.pt/ns/common}institution" maxOccurs="unbounded" minOccurs="0"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<InstitutionCtype>institutionprotected List<Person>person
-
Constructor Summary
Constructors Constructor Description Result()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<InstitutionCtype>getInstitution()Gets the value of the institution property.List<Person>getPerson()Gets the value of the person property.
-
-
-
Field Detail
-
institution
protected List<InstitutionCtype> institution
-
-
Method Detail
-
getPerson
public List<Person> getPerson()
Gets the value of the person 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 person property.For example, to add a new item, do as follows:
getPerson().add(newItem);Objects of the following type(s) are allowed in the list
Person
-
getInstitution
public List<InstitutionCtype> getInstitution()
Gets the value of the institution 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 institution property.For example, to add a new item, do as follows:
getInstitution().add(newItem);Objects of the following type(s) are allowed in the list
InstitutionCtype
-
-