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

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

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