001 package com.croftsoft.apps.exemplar; 002 003 /********************************************************************* 004 * Exemplar model accessor interface. 005 * 006 * Read-only access to model state. 007 * 008 * @version 009 * $Id: Accessor.java,v 1.4 2006/06/22 13:38:21 croft Exp $ 010 * @since 011 * 2006-01-14 012 * @author 013 * <a href="https://www.croftsoft.com/">David Wallace Croft</a> 014 *********************************************************************/ 015 016 public interface Accessor 017 ////////////////////////////////////////////////////////////////////// 018 ////////////////////////////////////////////////////////////////////// 019 { 020 021 public long getClickCount ( ); 022 023 public double getPhase ( ); 024 025 ////////////////////////////////////////////////////////////////////// 026 ////////////////////////////////////////////////////////////////////// 027 }