package com.onaro.util.jfc.date; import java.util.Date; /** * The interface of time filters. */ public interface TimeFilter { /** * Gets this filter's updated start time. Only changes that occured past this * time will be loaded. * @return the current start time */ public abstract Date getStartTime(); /** * Gets this filter's updated end time. Only changes that occured before this * time will be loaded. * @return the current start time */ public abstract Date getEndTime(); }