org.ka2ddo.yaac.ax25
Interface Digipeater.TXIGatedStationStatusListener

All Known Implementing Classes:
TXIGatedStationsTableModel
Enclosing class:
Digipeater

public static interface Digipeater.TXIGatedStationStatusListener

Interface for listeners to be informed of changes to the list of Tx I-gated stations. Note that calls to these methods are on the thread delivering frames to the digipeater logic (usually, the AX25Stack parsing thread).

See Also:
AX25Stack

Method Summary
 void txIGatedStationAdded(int index)
          Inform listener that a station has been added to the list of I-gated stations.
 void txIGatedStationDeleted(int index)
          Inform listener that a station is no longer being I-gated by this station (timed out).
 void txIGatedStationUpdated(int index)
          Inform listener that a station has been forwarded again.
 

Method Detail

txIGatedStationAdded

void txIGatedStationAdded(int index)
Inform listener that a station has been added to the list of I-gated stations.

Parameters:
index - position in list of I-gated stations

txIGatedStationUpdated

void txIGatedStationUpdated(int index)
Inform listener that a station has been forwarded again.

Parameters:
index - position in list of I-gated stations

txIGatedStationDeleted

void txIGatedStationDeleted(int index)
Inform listener that a station is no longer being I-gated by this station (timed out).

Parameters:
index - position in list of I-gated stations