Interface ITimeTrackerFactory

All Known Implementing Classes:
DefaultTimeTrackerFactory, LinkedTimeTrackerFactory

public interface ITimeTrackerFactory
Factory interface for objects capable of creating a time tracker.
Since:
5.0
Author:
J. van Leuven
  • Method Summary

    Modifier and Type
    Method
    Description
    This method should create a time tracker object for with the specified name.
  • Method Details

    • createTimeTracker

      ITimeTracker createTimeTracker(String name)
      This method should create a time tracker object for with the specified name.
      Parameters:
      name - The name of the time tracker that should be created.
      Returns:
      Time tracker implementation for the specified name.