001package jmri.jmrix.powerline.insteon2412s.configurexml; 002 003/** 004 * Simple class to allow configurexml to locate a persistance class for 005 * {@link jmri.jmrix.powerline.SerialLightManager} and its subclasses. 006 * <p> 007 * This extends {@link jmri.jmrix.powerline.configurexml.SerialLightManagerXml} 008 * without changing any of its behavior. This lets the configuration system 009 * locate a mirror class for 010 * {@link jmri.jmrix.powerline.insteon2412s.SpecificLightManager}, but the 011 * actual loading and storing will be done by 012 * {@link jmri.jmrix.powerline.configurexml.SerialLightManagerXml} in terms of 013 * which-ever manager object is currently installed. 014 * 015 * @author Bob Jacobsen 2008 016 */ 017public class SpecificLightManagerXml extends jmri.jmrix.powerline.configurexml.SerialLightManagerXml { 018 019}