001package jmri.jmrix.ieee802154; 002 003/** 004 * Interface to send/receive serial information 005 * 006 * @author Bob Jacobsen Copyright (C) 2001, 2006, 2007, 2008 007 */ 008public interface IEEE802154Interface { 009 010 void addIEEE802154Listener(IEEE802154Listener l); 011 012 void removeIEEE802154Listener(IEEE802154Listener l); 013 014 //boolean status(); // true if the implementation is operational 015 void sendIEEE802154Message(IEEE802154Message m, IEEE802154Listener l); // 2nd arg gets the reply 016 017}