From bc831ea040913b1069e8eaf99496dc12704b94a9 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Sat, 31 May 2014 17:22:41 -0400 Subject: Re-arrange after svn to git conversion --- src/java/VFreeBusy.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/java/VFreeBusy.java (limited to 'src/java/VFreeBusy.java') diff --git a/src/java/VFreeBusy.java b/src/java/VFreeBusy.java new file mode 100644 index 00000000..a781edc5 --- /dev/null +++ b/src/java/VFreeBusy.java @@ -0,0 +1,18 @@ +package net.cp.jlibical; + +public class VFreeBusy extends VComponent { + public VFreeBusy() + { + super(ICalComponentKind.ICAL_VFREEBUSY_COMPONENT); + } + + public VFreeBusy(long obj) + { + super(obj); + } + + public VFreeBusy(String str) + { + super(str); + } +} -- cgit v1.2.1