001package jmri.jmrit.blockboss.configurexml;
002
003/**
004 * Handle XML persistance of Simple Signal Logic objects.
005 *
006 * <p>
007 * In JMRI 2.1.5, the XML written by this package was changed.
008 * <p>
009 * Previously, it wrote a single "blocks" element, which contained multiple
010 * "block" elements to represent each individual BlockBoss (Simple Signal Logic)
011 * object.
012 * <p>
013 * These names were too generic, and conflicted with storing true Block objects.
014 * <p>
015 * Starting in JMRI 2.1.5 (May 2008), these were changed to "signalelements" and
016 * "signalelement" respectively.
017 *
018 * @author Bob Jacobsen Copyright: Copyright (c) 2003, 2005
019 *
020 * Revisions to add facing point sensors, approach lighting, and limited speed.
021 * Dick Bronson (RJB) 2006
022 */
023public class BlockBossLogicXml extends BlockBossLogicProviderXml {
024}