001package jmri.jmrix.rfid.generic.standalone; 002 003import jmri.jmrix.rfid.RfidMessage; 004 005/** 006 * 007 * <hr> 008 * This file is part of JMRI. 009 * <p> 010 * JMRI is free software; you can redistribute it and/or modify it under the 011 * terms of version 2 of the GNU General Public License as published by the Free 012 * Software Foundation. See the "COPYING" file for a copy of this license. 013 * <p> 014 * JMRI is distributed in the hope that it will be useful, but WITHOUT ANY 015 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 016 * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 017 * 018 * @author Matthew Harris Copyright (C) 2011 019 */ 020public class StandaloneMessage extends RfidMessage { 021 022 public StandaloneMessage(int l) { 023 super(l); 024 } 025 026 public StandaloneMessage(String m, int l) { 027 super(m, l); 028 } 029 030}