001package jmri.jmrix.rfid.generic.standalone.configurexml; 002 003import org.jdom2.Element; 004 005/** 006 * Provides load and store functionality for configuring StandaloneSensorManagers. 007 * <p> 008 * Uses the store method from the abstract base class, but provides a load 009 * method here. 010 * 011 * @author Bob Jacobsen Copyright: Copyright (c) 2008 012 * @author Matthew Harris Copyright (C) 2011 013 * @since 2.11.4 014 */ 015public class StandaloneSensorManagerXml extends jmri.jmrix.rfid.configurexml.RfidSensorManagerXml { 016 017 public StandaloneSensorManagerXml() { 018 super(); 019 } 020 021 @Override 022 public void setStoreElementClass(Element sensors) { 023 sensors.setAttribute("class", this.getClass().getName()); 024 } 025}