View Javadoc

1   package com.atlassian.pageobjects.elements.query.util;
2   
3   /**
4    * Marks classes that perform time computations and are using {@link Clock}s.
5    *
6    */
7   public interface ClockAware
8   {
9   
10      /**
11       * Clock used by this instance.
12       *
13       * @return clock
14       */
15      Clock clock();
16  }