001package jmri.jmrix.loconet; 002 003/** 004 * Concrete implementation of the {@link jmri.IdTag} interface for the LocoNet 005 * based Transponding reports. 006 * <hr> 007 * This file is part of JMRI. 008 * <p> 009 * JMRI is free software; you can redistribute it and/or modify it under the 010 * terms of version 2 of the GNU General Public License as published by the Free 011 * Software Foundation. See the "COPYING" file for a copy of this license. 012 * <p> 013 * JMRI is distributed in the hope that it will be useful, but WITHOUT ANY 014 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 015 * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 016 * 017 * @author Matthew Harris Copyright (C) 2011 018 * @author Paul Bender Copyright (C) 2019 019 * @since 4.15.4 020 */ 021public class TranspondingTag extends jmri.implementation.DefaultIdTag implements jmri.AddressedIdTag { 022 023 public TranspondingTag(String systemName) { 024 super(systemName); 025 } 026 027 public TranspondingTag(String systemName, String userName) { 028 super(systemName, userName); 029 } 030 031}