diff options
| author | Allen Winter <allen.winter@kdab.com> | 2014-05-31 17:22:41 -0400 |
|---|---|---|
| committer | Allen Winter <allen.winter@kdab.com> | 2014-05-31 17:22:41 -0400 |
| commit | bc831ea040913b1069e8eaf99496dc12704b94a9 (patch) | |
| tree | 1502b86977c42dd5e5d202a2ff3807b08309f9ff /src/java/VAgenda.java | |
| parent | c1d3761c08651f469a3bd3a8130e6005b8e26136 (diff) | |
| download | libical-git-bc831ea040913b1069e8eaf99496dc12704b94a9.tar.gz | |
Re-arrange after svn to git conversion
Diffstat (limited to 'src/java/VAgenda.java')
| -rw-r--r-- | src/java/VAgenda.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/java/VAgenda.java b/src/java/VAgenda.java new file mode 100644 index 00000000..8b85fe11 --- /dev/null +++ b/src/java/VAgenda.java @@ -0,0 +1,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); + } +} |
