Class WinlinkMessageSender

All Implemented Interfaces:
ActionListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible, DocumentListener, TableModelListener

public class WinlinkMessageSender extends JPanel implements DocumentListener, ActionListener, TableModelListener
This class creates a GUI panel for entering a short e-mail message for transmission to the APRS WinLink servers.
See Also:
  • Constructor Details

    • WinlinkMessageSender

      public WinlinkMessageSender()
  • Method Details

    • changedUpdate

      public void changedUpdate(DocumentEvent e)
      Gives notification that an attribute or set of attributes changed.
      Specified by:
      changedUpdate in interface DocumentListener
      Parameters:
      e - the document event
    • insertUpdate

      public void insertUpdate(DocumentEvent e)
      Gives notification that there was an insert into the document. The range given by the DocumentEvent bounds the freshly inserted region.
      Specified by:
      insertUpdate in interface DocumentListener
      Parameters:
      e - the document event
    • removeUpdate

      public void removeUpdate(DocumentEvent e)
      Gives notification that a portion of the document has been removed. The range is given in terms of what the view last saw (that is, before updating sticky positions).
      Specified by:
      removeUpdate in interface DocumentListener
      Parameters:
      e - the document event
    • actionPerformed

      public void actionPerformed(ActionEvent e)
      Invoked when the Send or Cancel button is clicked.
      Specified by:
      actionPerformed in interface ActionListener
    • tableChanged

      public void tableChanged(TableModelEvent e)
      This fine grain notification tells listeners the exact range of cells, rows, or columns that changed.
      Specified by:
      tableChanged in interface TableModelListener