Import new libical from mainline HEAD and make appropriate changes to
Evolution. svn path=/trunk/; revision=22538
This commit is contained in:
24
libical/src/java/VCalendar.java
Normal file
24
libical/src/java/VCalendar.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user