aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/java/VQuery.java
diff options
context:
space:
mode:
Diffstat (limited to 'libical/src/java/VQuery.java')
-rw-r--r--libical/src/java/VQuery.java24
1 files changed, 24 insertions, 0 deletions
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);
+ }
+}