1   package com.atlassian.pageobjects.elements.query.util;
2   
3   /**
4    * Provides information about current time.
5    *
6    */
7   public interface Clock
8   {
9   
10      /**
11       * Current time according to this clock.
12       *
13       * @return current time
14       */
15      long currentTime();
16  }