Class EventCountProvider

java.lang.Object
org.eclipse.nebula.widgets.compositetable.timeeditor.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
  • Constructor Summary

    Constructors 
    Constructor Description
    EventCountProvider()  
  • Method Summary

    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 Details

  • Method Details

    • 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.