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