mapping.data
Interface ServersTableListener

All Known Implementing Classes:
ServersTableJPanel

public interface ServersTableListener

This class is a listener to events happening to the ServerTable

Author:
Majd Kokaly
See Also:
ServersTable

Method Summary
 void hostNameChanged(int serverID, java.lang.String hostname)
          This method is invoked when the hostname of a server is changed.
 void passwordChanged(int serverID, java.lang.String password)
          This method is invoked when the password of a server is changed.
 void upDownStatusChanged(int serverID, boolean down)
          This method is invoked when the down/up status of a server is changed.
 

Method Detail

hostNameChanged

void hostNameChanged(int serverID,
                     java.lang.String hostname)
This method is invoked when the hostname of a server is changed.

Parameters:
serverID - The ID of the server in subject.
hostname - The new hostname.

passwordChanged

void passwordChanged(int serverID,
                     java.lang.String password)
This method is invoked when the password of a server is changed.

Parameters:
serverID - The ID of the server in subject.
password - The new password.

upDownStatusChanged

void upDownStatusChanged(int serverID,
                         boolean down)
This method is invoked when the down/up status of a server is changed.

Parameters:
serverID - The ID of the server in subject.
down - The new up/down status.