public interface MboSetListener
extends java.rmi.Remote
Modifier and Type | Method and Description |
---|---|
void |
addedMbo(MboRemote newMbo,
int position)
Reports that a new Mbo has been added to the MboSet.
|
void |
modifiedMbo(MboRemote modifiedMbo)
This listener method is called in response to the MboSet's being told one
of it's Mbos has been modified.
|
void |
removedMbo(MboRemote removedMbo,
int position)
Reports that a Mbo has been removed from the MboSet.
|
void addedMbo(MboRemote newMbo, int position) throws MXException, java.rmi.RemoteException
newMbo
- The newly created Mbo.position
- The postion of the new Mbo.MXException
java.rmi.RemoteException
void removedMbo(MboRemote removedMbo, int position) throws MXException, java.rmi.RemoteException
removedMbo
- The recently removed Mbo.position
- The postion of the Mbo before it was removed.MXException
java.rmi.RemoteException
void modifiedMbo(MboRemote modifiedMbo) throws MXException, java.rmi.RemoteException
modifiedMbo
- The recently modified Mbo.MXException
java.rmi.RemoteException