summaryrefslogtreecommitdiff
path: root/src/java/VFreeBusy.java
blob: 6778b2f08435631b4535639ab22db422deb8b7c8 (plain)
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);
	}
}