Package ietf.params.xml.ns.icalendar_2
Class ArrayOfTimezoneContainedProperties
- java.lang.Object
-
- ietf.params.xml.ns.icalendar_2.ArrayOfTimezoneContainedProperties
-
public class ArrayOfTimezoneContainedProperties extends Object
From RFC 5545 Section 3.6.5 timezonec = "BEGIN" ":" "VTIMEZONE" CRLF *( ; ; 'tzid' is REQUIRED, but MUST NOT occur more ; than once. ; tzid / ; ; 'last-mod' and 'tzurl' are OPTIONAL, ; but MUST NOT occur more than once. ; last-mod / tzurl / ; ; One of 'standardc' or 'daylightc' MUST occur ; and each MAY occur more than once. ; standardc / daylightc / ; ; The following are OPTIONAL, ; and MAY occur more than once. ; x-prop / iana-prop ; ) "END" ":" "VTIMEZONE" CRLFJava class for ArrayOfTimezoneContainedProperties complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ArrayOfTimezoneContainedProperties"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element name="tzid" type="{urn:ietf:params:xml:ns:icalendar-2.0}TextPropertyType"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}last-modified"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}url"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BasePropertyType>tzidOrLastModifiedOrUrl
-
Constructor Summary
Constructors Constructor Description ArrayOfTimezoneContainedProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BasePropertyType>getTzidOrLastModifiedOrUrl()Gets the value of the tzidOrLastModifiedOrUrl property.
-
-
-
Field Detail
-
tzidOrLastModifiedOrUrl
protected List<BasePropertyType> tzidOrLastModifiedOrUrl
-
-
Method Detail
-
getTzidOrLastModifiedOrUrl
public List<BasePropertyType> getTzidOrLastModifiedOrUrl()
Gets the value of the tzidOrLastModifiedOrUrl 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 tzidOrLastModifiedOrUrl property.For example, to add a new item, do as follows:
getTzidOrLastModifiedOrUrl().add(newItem);Objects of the following type(s) are allowed in the list
TextPropertyTypeLastModifiedPropTypeUrlPropType
-
-