From 697761cc337aa77a47140c8df50ed84bc25e23f6 Mon Sep 17 00:00:00 2001 From: Hans Petter Date: Thu, 11 Sep 2003 22:04:44 +0000 Subject: Import new libical from mainline HEAD and make appropriate changes to Evolution. svn path=/trunk/; revision=22538 --- libical/src/java/VQuery.java | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libical/src/java/VQuery.java (limited to 'libical/src/java/VQuery.java') diff --git a/libical/src/java/VQuery.java b/libical/src/java/VQuery.java new file mode 100644 index 0000000000..e94a07327e --- /dev/null +++ b/libical/src/java/VQuery.java @@ -0,0 +1,24 @@ +/*====================================================================== + FILE: VQuery.java + CREATOR: fnguyen 01/11/02 + (C) COPYRIGHT 2002, Critical Path +======================================================================*/ + +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); + } +} -- cgit v1.2.3