001package jmri.jmrix.jmriclient; 002 003/** 004 * Defines the interface for listening to traffic on the JMRIClient 005 * communications link. 006 * 007 * @author Bob Jacobsen Copyright (C) 2001, 2004, 2008 008 */ 009public interface JMRIClientListener extends jmri.jmrix.AbstractMRListener { 010 011 void message(JMRIClientMessage m); 012 013 void reply(JMRIClientReply m); 014 015}