001package jmri.jmrix.loconet; 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 Jacobsen Copyright (C) 2001, 2008 008 */ 009public interface SlotListener extends java.util.EventListener { 010 011 void notifyChangedSlot(LocoNetSlot s); 012}