NISTMessengerGUI.java
Upload User: liulanlin
Upload Date: 2017-12-08
Package Size: 1274k
Code Size: 1k
Category:

VOIP program

Development Platform:

Java

  1. /*
  2.  * Created on Mar 24, 2004
  3.  *
  4.  * To change the template for this generated file go to
  5.  * Window - Preferences - Java - Code Generation - Code and Comments
  6.  */
  7. package gov.nist.applet.phone.ua.gui;
  8. import javax.swing.JButton;
  9. import javax.swing.JLabel;
  10. import javax.swing.JList;
  11. /**
  12.  * @author DERUELLE Jean
  13.  *
  14.  * To change the template for this generated type comment go to
  15.  * Window - Preferences - Java - Code Generation - Code and Comments
  16.  */
  17. public interface NISTMessengerGUI {
  18. /**
  19.  * Get the contact list from this frame
  20.  * @return the contact list from this frame
  21.  */
  22. public JList getContactList();
  23. /**
  24.  * Get the contact list from this frame
  25.  * @return the contact list from this frame
  26.  */
  27. public JButton getRemoveContactButton();
  28. public void repaint();
  29. /**
  30.  * Get the view component representing the logged status label
  31.  * @return the logged status label
  32.  */
  33. public JLabel getLoggedStatusLabel() ;
  34. /** Display a fatal error and then die.
  35.          */
  36. public void fatalError(String string);
  37. }