|
AdventNet Web NMS 4 DMS API Specification | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--com.adventnet.nms.rta.fw.client.ProbePanelActionsAdapter
This is the Adapter class for the ProbePanelActions interface. This class can be used, when the user wants to receive notification about the actions occurs in the ProbePanel. Suppose the user wants to provide the implementation for some of(not all) the methods in the ProbePanelActions interface, instead of giving the empty implementation for all the methods, he can extend this Adapter class and he can override the required methods.
| Constructor Summary | |
ProbePanelActionsAdapter()
|
|
| Method Summary | |
void |
postAdd(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called after a leaf node has been added for a probe. |
void |
postApply(AbstractRTADataModel dataModel,
java.util.ArrayList modifiedProbes)
This method will be called after applied the changes to the server. |
void |
postCopy(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called after a leaf node has been copied in the probe. |
void |
postCut(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called after a leaf node has been cut from the probe. |
void |
postDelete(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called after a leaf node has been deleted from a probe. |
void |
postModify(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String oldValue,
java.lang.String newValue)
This method will be called after a leaf node(node name) has been modified for a probe. |
void |
postPaste(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called after a leaf node has been pasted into the probe. |
void |
postSelection(AbstractRTADataModel dataModel,
java.lang.String oldProbeName,
java.lang.String oldValue,
java.lang.String newProbeName,
java.lang.String newValue)
This method will be called after a leaf node has been selected in the tree. |
void |
preAdd(AbstractRTADataModel dataModel,
java.lang.String probeName)
This method will be called when a user tries to add a leaf node for a probe. |
void |
preApply(AbstractRTADataModel dataModel,
java.util.ArrayList modifiedProbes)
This method will be called when a user tries to apply the changes that have been made. |
void |
preCopy(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called when a user tries to copy a leaf node in a probe. |
void |
preCut(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called when a user tries to cut a leaf node from a probe. |
void |
preDelete(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called when a user tries to delete a leaf node for a probe. |
void |
preModify(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
This method will be called when a user tries to modify a leaf node(node name) for a probe. |
void |
prePaste(AbstractRTADataModel dataModel,
java.lang.String probeName)
This method will be called when a user tries to paste a leaf node in a probe. |
void |
preSelection(AbstractRTADataModel dataModel,
java.lang.String oldProbeName,
java.lang.String oldValue,
java.lang.String newProbeName,
java.lang.String newValue)
This method will be called when a user tries to select a node in the tree. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public ProbePanelActionsAdapter()
| Method Detail |
public void preAdd(AbstractRTADataModel dataModel,
java.lang.String probeName)
preAdd in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probe
public void postAdd(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
postAdd in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void preModify(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
preModify in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void postModify(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String oldValue,
java.lang.String newValue)
postModify in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probeoldValue - newValue -
public void preDelete(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
preDelete in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void postDelete(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
postDelete in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void preCopy(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
preCopy in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void postCopy(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
postCopy in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void preCut(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
preCut in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void postCut(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
postCut in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void prePaste(AbstractRTADataModel dataModel,
java.lang.String probeName)
prePaste in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probe
public void postPaste(AbstractRTADataModel dataModel,
java.lang.String probeName,
java.lang.String value)
postPaste in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.probeName - name of the probevalue -
public void preApply(AbstractRTADataModel dataModel,
java.util.ArrayList modifiedProbes)
preApply in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.modifiedProbes - list of modified probes
public void postApply(AbstractRTADataModel dataModel,
java.util.ArrayList modifiedProbes)
postApply in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.modifiedProbes - list of modified probes
public void preSelection(AbstractRTADataModel dataModel,
java.lang.String oldProbeName,
java.lang.String oldValue,
java.lang.String newProbeName,
java.lang.String newValue)
preSelection in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.oldProbeName - name of the probe before performing the modify operationoldValue - newProbeName - name of the probe after performing the modify operationnewValue -
public void postSelection(AbstractRTADataModel dataModel,
java.lang.String oldProbeName,
java.lang.String oldValue,
java.lang.String newProbeName,
java.lang.String newValue)
postSelection in interface ProbePanelActionsdataModel - data model used in the RTA UI implementation, the data model value should either be the instance of \"DefaultSingleObjectModel\" or \"DefultMultiObjectModel\" class.oldProbeName - name of the probe before performing the modify operationoldValue - newProbeName - name of the probe after performing the modify operationnewValue -
|
AdventNet Web NMS 4 DMS API Specification | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||