001package jmri.jmrix.marklin; 002 003/** 004 * Define the interface for listening to traffic on the Marklin communications 005 * link. 006 * 007 * @author Bob Jacobsen Copyright (C) 2001 008 */ 009public interface MarklinListener extends jmri.jmrix.AbstractMRListener { 010 011 void message(MarklinMessage m); 012 013 void reply(MarklinReply m); 014}