001package jmri.jmrix.nce;
002
003/**
004 * Defines the interface for listening to traffic on the NCE communications
005 * link.
006 *
007 * @author Bob Jacobsen Copyright (C) 2001
008 */
009public interface NceListener extends jmri.jmrix.AbstractMRListener {
010
011    void message(NceMessage m);
012
013    void reply(NceReply m);
014}
015
016