001         package com.croftsoft.apps.infant;
002         
003         /*********************************************************************
004         * Read-only accessor interface to InfantModel.
005         * 
006         * @version
007         *   $Id: InfantAccessor.java,v 1.14 2007/02/25 03:17:05 croft Exp $
008         * @since
009         *   2006-01-15
010         * @author
011         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012         *********************************************************************/
013    
014         public interface  InfantAccessor
015         //////////////////////////////////////////////////////////////////////
016         //////////////////////////////////////////////////////////////////////
017         {
018           
019         //////////////////////////////////////////////////////////////////////
020         // accessor methods
021         //////////////////////////////////////////////////////////////////////
022         
023         /** Nanoseconds. */
024         public long    getImageDisplayTime ( );
025         
026         /** Nanoseconds. */
027         public long    getInterStimulusInterval ( );
028         
029         public String  getImagePath ( );
030         
031         public double  getScale ( );
032         
033         //////////////////////////////////////////////////////////////////////
034         //////////////////////////////////////////////////////////////////////
035         }