blob: 8b85fe11c28402d456e1fddf7f8d2461f075b4d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*======================================================================
FILE: VAgenda.java
CREATOR: fnguyen 01/11/02
(C) COPYRIGHT 2002, Critical Path
======================================================================*/
package net.cp.jlibical;
public class VAgenda extends VComponent {
public VAgenda()
{
super(ICalComponentKind.ICAL_VAGENDA_COMPONENT);
}
public VAgenda(long obj)
{
super(obj);
}
public VAgenda(String str)
{
super(str);
}
}
|