Package pt.cienciavitae.ns.common
Class InstitutionAddressCtype
- java.lang.Object
-
- pt.cienciavitae.ns.common.InstitutionAddressCtype
-
public class InstitutionAddressCtype extends Object
Java class for institution-address-ctype complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="institution-address-ctype"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="city" type="{http://www.cienciavitae.pt/ns/common}string-255-stype"/> <element name="region" type="{http://www.cienciavitae.pt/ns/common}string-255-stype" minOccurs="0"/> <element name="country" type="{http://www.cienciavitae.pt/ns/common}iso-3166-country-ctype"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description InstitutionAddressCtype()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCity()Gets the value of the city property.Iso3166CountryCtypegetCountry()Gets the value of the country property.StringgetRegion()Gets the value of the region property.voidsetCity(String value)Sets the value of the city property.voidsetCountry(Iso3166CountryCtype value)Sets the value of the country property.voidsetRegion(String value)Sets the value of the region property.
-
-
-
Field Detail
-
city
protected String city
-
region
protected String region
-
country
protected Iso3166CountryCtype country
-
-
Method Detail
-
getCity
public String getCity()
Gets the value of the city property.- Returns:
- possible object is
String
-
setCity
public void setCity(String value)
Sets the value of the city property.- Parameters:
value- allowed object isString
-
getRegion
public String getRegion()
Gets the value of the region property.- Returns:
- possible object is
String
-
setRegion
public void setRegion(String value)
Sets the value of the region property.- Parameters:
value- allowed object isString
-
getCountry
public Iso3166CountryCtype getCountry()
Gets the value of the country property.- Returns:
- possible object is
Iso3166CountryCtype
-
setCountry
public void setCountry(Iso3166CountryCtype value)
Sets the value of the country property.- Parameters:
value- allowed object isIso3166CountryCtype
-
-