001package jmri.jmrit.logixng.util; 002 003/** 004 * Is this item in use? 005 * @author Daniel Bergqvist (C) 2022 006 */ 007public interface InUse { 008 009 boolean isInUse(); 010 011}
001package jmri.jmrit.logixng.util; 002 003/** 004 * Is this item in use? 005 * @author Daniel Bergqvist (C) 2022 006 */ 007public interface InUse { 008 009 boolean isInUse(); 010 011}