package jfxtras.scene.control.agenda.icalendar.editors.revisors; import java.util.List; import jfxtras.icalendarfx.VCalendar; import jfxtras.icalendarfx.components.VFreeBusy; //TODO - add functionality /** * Reviser for {@link VFreeBusy} * * @author David Bal * */ public class ReviserVFreeBusy implements Reviser { public ReviserVFreeBusy(VFreeBusy component) { throw new RuntimeException("not implemented"); } @Override public List<VCalendar> revise() { throw new RuntimeException("not implemented"); } }