001package jmri.jmrix.loconet.locostats;
002
003/**
004 * Interface for objects that want to be notified when a
005 * {@link jmri.jmrix.loconet.LocoNetSlot} is modified.
006 
007 * @author Bob Milhaupt
008 */
009public interface LocoNetInterfaceStatsListener extends java.util.EventListener {
010 
011    void notifyChangedInterfaceStatus(Object s);
012}