biweekly.property
Class TimezoneUrl
java.lang.Object
biweekly.property.ICalProperty
biweekly.property.ValuedProperty<String>
biweekly.property.TextProperty
biweekly.property.TimezoneUrl
public class TimezoneUrl
- extends TextProperty
Defines a URL that points to an iCalendar object that contains further
information on a timezone.
Examples:
//creating a new property
TimezoneUrl tzurl = new TimezoneUrl("http://example.com/tz.ics");
//usage in a VTIMEZONE component
VTimezone timezone = ...
timezone.getTimezoneUrl("http://example.com/tz.ics");
- Author:
- Michael Angstadt
- Specification Reference:
- RFC 5545 p.106
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TimezoneUrl
public TimezoneUrl(String url)
- Creates a timezone URL property.
- Parameters:
url
- the timezone URL (e.g.
"http://example.com/America-New_York.ics")
Copyright © 2013 Michael Angstadt. All Rights Reserved.