summaryrefslogtreecommitdiff
path: root/src/java/VAgenda.java
blob: d487c0eba8100209b0ccfe773d2d83fcd8b0a6b4 (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: VAgenda.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 VAgenda extends VComponent {
	public VAgenda()
	{
		super(ICalComponentKind.ICAL_VAGENDA_COMPONENT);
	}

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

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