aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/java/VCalendar.java
blob: 4cfcad2709eec5843ae1b22c140839a3e2844e77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
    }
}