summaryrefslogtreecommitdiff
path: root/src/java/VCalendar.java
blob: a3f0958f717a9803e00c6516eded17057f5e412f (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: VCalendar.java
 CREATOR: echoi 01/28/02
 SPDX-FileCopyrightText: 2002, Critical Path
 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
======================================================================*/

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);
	}
}