Methods
|
|
__init__
changeContactName
changeContactStatus
|
|
__init__
|
__init__ ( self, im )
represents the list of users on our contact list. (perhaps more than one
gateway)
im := the InstanceMessenger that's being used (class InstanceMessenger)
|
|
changeContactName
|
changeContactName (
self,
gateway,
contact,
newName,
)
change the name of a contact on our list. it could be our username as
well, in which case, the gateway name has probably changed as well.
gateway := the gateway the contact is from (class Gateway)
contact := the old name of the contact (string)
newName := the new name of the contact (string)
|
|
changeContactStatus
|
changeContactStatus (
self,
gateway,
contact,
newStatus,
)
change the status of a contact on our list.
gateway := the gateway the contact is from (class Gateway)
contact := the username of the contact that changed (string)
newStatus := the new status (string)
|
|