summaryrefslogtreecommitdiff
path: root/src/java/VQuery.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/VQuery.java')
-rw-r--r--src/java/VQuery.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/java/VQuery.java b/src/java/VQuery.java
new file mode 100644
index 0000000..e94a073
--- /dev/null
+++ b/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);
+ }
+}