yetanotheraprsc/yetanotheraprsc-code/.svn/pristine/07/07c2816b1dfc79ecbf8c2346385...

37 lines
1.3 KiB
Plaintext

package org.ka2ddo.yaac.aprs;
/*
* Copyright (C) 2011-2019 Andrew Pavlin, KA2DDO
* This file is part of YAAC (Yet Another APRS Client).
*
* YAAC is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* YAAC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* and GNU Lesser General Public License along with YAAC. If not,
* see <http://www.gnu.org/licenses/>.
*/
/**
* This interface defines events that can occur when the StationTracker class is
* updated with digipeater information.
* @author Andrew Pavlin, KA2DDO
*/
public interface DigipeatListener {
/**
* Report when a new digipeater is identified.
* @param digipeater String callsign of digipeater
*/
void digipeaterAdded(String digipeater);
/**
* Report when a digipeater is used again.
* @param digipeater String callsign of digipeater
*/
void digipeaterUsedAgain(String digipeater);
}