Package pt.cienciavitae.ns.common
Class DateCtype
- java.lang.Object
-
- pt.cienciavitae.ns.common.DateCtype
-
- Direct Known Subclasses:
DateOfBirthCtype
public class DateCtype extends Object
Java class for date-ctype complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="date-ctype"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="year" use="required" type="{http://www.cienciavitae.pt/ns/common}year-stype" /> <attribute name="month" type="{http://www.cienciavitae.pt/ns/common}month-stype" /> <attribute name="day" type="{http://www.cienciavitae.pt/ns/common}day-stype" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description DateCtype()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDay()Gets the value of the day property.StringgetMonth()Gets the value of the month property.StringgetYear()Gets the value of the year property.voidsetDay(String value)Sets the value of the day property.voidsetMonth(String value)Sets the value of the month property.voidsetYear(String value)Sets the value of the year property.
-
-
-
Method Detail
-
getYear
public String getYear()
Gets the value of the year property.- Returns:
- possible object is
String
-
setYear
public void setYear(String value)
Sets the value of the year property.- Parameters:
value- allowed object isString
-
getMonth
public String getMonth()
Gets the value of the month property.- Returns:
- possible object is
String
-
setMonth
public void setMonth(String value)
Sets the value of the month property.- Parameters:
value- allowed object isString
-
getDay
public String getDay()
Gets the value of the day property.- Returns:
- possible object is
String
-
-