aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/java/VEvent.java
blob: 2017aa58ce1cf098d164cf2fa9bb23c9e5f7acda (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: VEvent.java
 CREATOR: fnguyen 01/11/02
 (C) COPYRIGHT 2002, Critical Path
======================================================================*/

package net.cp.jlibical;

public class VEvent extends VComponent {
    public VEvent()
    {
        super(ICalComponentKind.ICAL_VEVENT_COMPONENT);
    }   

    public VEvent(long obj)
    {
        super(obj);
    }

    public VEvent(String str)
    {
        super(str);
    }
}