blob: 33019b81037d0cb3b9061a3d3a42600780ed4be0 (
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: VEvent.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 VEvent extends VComponent {
public VEvent()
{
super(ICalComponentKind.ICAL_VEVENT_COMPONENT);
}
public VEvent(long obj)
{
super(obj);
}
public VEvent(String str)
{
super(str);
}
}
|