Import new libical from mainline HEAD and make appropriate changes to

Evolution.

svn path=/trunk/; revision=22538
This commit is contained in:
Hans Petter
2003-09-11 22:04:44 +00:00
parent 733d77e657
commit 697761cc33
278 changed files with 84229 additions and 8161 deletions

View File

@ -0,0 +1,24 @@
/*======================================================================
FILE: VCalendar.java
CREATOR: echoi 01/28/02
(C) COPYRIGHT 2002, Critical Path
======================================================================*/
package net.cp.jlibical;
public class VCalendar extends VComponent {
public VCalendar()
{
super(ICalComponentKind.ICAL_VCALENDAR_COMPONENT);
}
public VCalendar(long obj)
{
super(obj);
}
public VCalendar(String str)
{
super(str);
}
}