001package jmri.jmrix.bachrus; 002 003/** 004 * Defines the interface for listening to traffic on the NCE communications 005 * link. 006 * 007 * @author Andrew Crosland Copyright (C) 2010 008 */ 009public interface SpeedoListener extends java.util.EventListener { 010 011 void reply(SpeedoReply m); 012 013}