blob: 2de52e89e6b6e60ff485198c2f9ba2a04b6caf16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*======================================================================
FILE: VAlarm.java
CREATOR: fnguyen 01/11/02
SPDX-FileCopyrightText: 2002, Critical Path
SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
======================================================================*/
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);
}
}
|