public class Calendars extends Object
Java class for calendars complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="calendars"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="day-types" type="{}day-types"/> <element name="date" type="{}date" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="base-id" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
baseId |
protected List<Date> |
date |
protected DayTypes |
dayTypes |
Constructor and Description |
---|
Calendars() |
Modifier and Type | Method and Description |
---|---|
String |
getBaseId()
Gets the value of the baseId property.
|
List<Date> |
getDate()
Gets the value of the date property.
|
DayTypes |
getDayTypes()
Gets the value of the dayTypes property.
|
void |
setBaseId(String value)
Sets the value of the baseId property.
|
void |
setDayTypes(DayTypes value)
Sets the value of the dayTypes property.
|
public DayTypes getDayTypes()
DayTypes
public void setDayTypes(DayTypes value)
value
- allowed object is
DayTypes
public List<Date> getDate()
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 set
method for the date property.
For example, to add a new item, do as follows:
getDate().add(newItem);
Objects of the following type(s) are allowed in the list
Date
public String getBaseId()
String
Copyright © 2000–2024 Packwood Software. All rights reserved.