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

package net.cp.jlibical;

public class VAlarm extends VComponent {
    public VAlarm()
    {
        super(ICalComponentKind.ICAL_VALARM_COMPONENT);
    }
    
    public VAlarm(long obj)
    {
        super(obj);
    }

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