aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/java/VFreeBusy.java
blob: a781edc59a7b777513fd2cf051f6cddfedf676ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
    }
}