001package jmri.jmrix.loconet.hexfile.configurexml;
002
003import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
004import org.jdom2.Element;
005
006/**
007 * Provides load and store functionality for configuring LnSensorManagers.
008 * <p>
009 * Uses the store method from the abstract base class, but provides a load
010 * method here.
011 *
012 * @author Kevin Dickerson Copyright: Copyright (c) 2003
013 */
014@SuppressFBWarnings(value = "NM_SAME_SIMPLE_NAME_AS_SUPERCLASS", justification = "This is ineffect the same as its super class")
015public class LnSensorManagerXml extends jmri.jmrix.loconet.configurexml.LnSensorManagerXml {
016
017    @Override
018    public void setStoreElementClass(Element sensors) {
019        sensors.setAttribute("class", super.getClass().getSuperclass().getName()); // NOI18N
020    }
021
022}