biweekly.property
Class TimezoneUrl

java.lang.Object
  extended by biweekly.property.ICalProperty
      extended by biweekly.property.ValuedProperty<String>
          extended by biweekly.property.TextProperty
              extended by 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

Field Summary
 
Fields inherited from class biweekly.property.ValuedProperty
value
 
Fields inherited from class biweekly.property.ICalProperty
parameters
 
Constructor Summary
TimezoneUrl(String url)
          Creates a timezone URL property.
 
Method Summary
 
Methods inherited from class biweekly.property.ValuedProperty
getValue, setValue, validate
 
Methods inherited from class biweekly.property.ICalProperty
addParameter, getParameter, getParameters, getParameters, removeParameter, setParameter, setParameter, setParameters, validate
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

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.