Class EventCountProvider


  • public abstract class EventCountProvider
    extends java.lang.Object
    A strategy pattern object that returns the number of events to display for a specific time period.
    Since:
    3.2
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract int getNumberOfEventsInDay​(java.util.Date day)
      Returns the number of events to display on a specific day.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EventCountProvider

        public EventCountProvider()
    • Method Detail

      • getNumberOfEventsInDay

        public abstract int getNumberOfEventsInDay​(java.util.Date day)
        Returns the number of events to display on a specific day.
        Parameters:
        day - The day to query.
        Returns:
        The number of events on the specified day.