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

package net.cp.jlibical;

public class VFreeBusy extends VComponent {
	public VFreeBusy()
	{
		super(ICalComponentKind.ICAL_VFREEBUSY_COMPONENT);
	}

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

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