001package jmri.jmrit.vsdecoder;
002
003import java.util.EventListener;
004
005/**
006 * Manager Event Listener.
007 *
008 * <hr>
009 * This file is part of JMRI.
010 * <p>
011 * JMRI is free software; you can redistribute it and/or modify it under
012 * the terms of version 2 of the GNU General Public License as published
013 * by the Free Software Foundation. See the "COPYING" file for a copy
014 * of this license.
015 * <p>
016 * JMRI is distributed in the hope that it will be useful, but WITHOUT
017 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
018 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
019 * for more details.
020 *
021 * @author Mark Underwood Copyright (C) 2011
022 */
023public interface VSDManagerListener extends EventListener {
024
025    public void eventAction(VSDManagerEvent evt);
026}