bump to 1.0.0 and clean up spec file
[platform/upstream/libical.git] / src / java / VQuery.java
1 /*======================================================================
2  FILE: VQuery.java
3  CREATOR: fnguyen 01/11/02
4  (C) COPYRIGHT 2002, Critical Path
5 ======================================================================*/
6
7 package net.cp.jlibical;
8
9 public class VQuery extends VComponent {
10         public VQuery()
11         {
12                 super(ICalComponentKind.ICAL_VQUERY_COMPONENT);
13         }       
14
15         public VQuery(long obj)
16         {
17                 super(obj);
18         }
19
20         public VQuery(String str)
21         {
22                 super(str);
23         }
24 }