001package jmri.jmrix.powerline.simulator.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.cp290.SpecificLightManager}, but the actual
011 * 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 * @author Ken Cameron 2011
017 */
018public class SpecificLightManagerXml extends jmri.jmrix.powerline.configurexml.SerialLightManagerXml {
019
020}