001         package com.croftsoft.core.animation;
002    
003         /*********************************************************************
004         * Provides the current time in nanoseconds.
005         *
006         * @version
007         *   2002-03-15
008         * @since
009         *   2002-03-09
010         * @author
011         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012         *********************************************************************/
013    
014         public interface  Clock
015         //////////////////////////////////////////////////////////////////////
016         //////////////////////////////////////////////////////////////////////
017         {
018    
019         public long  currentTimeNanos ( );
020    
021         //////////////////////////////////////////////////////////////////////
022         //////////////////////////////////////////////////////////////////////
023         }