001package jmri.jmrix.srcp; 002 003/** 004 * Defines the interface for listening to traffic on the SRCP communications 005 * link. 006 * 007 * @author Bob Jacobsen Copyright (C) 2001, 2004, 2008 008 */ 009public interface SRCPListener extends jmri.jmrix.AbstractMRListener { 010 011 void message(SRCPMessage m); 012 013 void reply(SRCPReply m); 014 015 void reply(jmri.jmrix.srcp.parser.SimpleNode n); 016} 017 018