diff options
Diffstat (limited to 'src/java/VFreeBusy.java')
-rw-r--r-- | src/java/VFreeBusy.java | 18 |
1 files changed, 18 insertions, 0 deletions
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); + } +} |