com.sdm.quasar.client.core.data.plugins.impl
Interface EventNotificationValueHandlerListener

All Known Implementing Classes:
DefaultCUFValueModelPlugIn

public interface EventNotificationValueHandlerListener

Listener for the com.sdm.quasar.client.core.data.plugin.impl.EventNotificationValueHandler.

Version:
1.0
Author:
Bernd Olleck, sd&m AG

Method Summary
 void notifyChildValueChanged(NodeController node, java.lang.String childKey)
          Called when com.sdm.quasar.client.core.data.internal.impl.ValueHandler#notifyChildValueChanged(NodeController, String) is called on the EventNotificationValueHandler.
 void notifyNodeValueChanged(NodeController node)
          Called when com.sdm.quasar.client.core.data.internal.impl.ValueHandler#notifyNodeValueChanged(NodeController) is called on the EventNotificationValueHandler.
 void notifySourceValueChanged(NodeController node, java.lang.String sourceKey)
          Called when com.sdm.quasar.client.core.data.internal.impl.ValueHandler#notifySourceValueChanged(NodeController, String) is called on the EventNotificationValueHandler.
 

Method Detail

notifyNodeValueChanged

public void notifyNodeValueChanged(NodeController node)
Called when com.sdm.quasar.client.core.data.internal.impl.ValueHandler#notifyNodeValueChanged(NodeController) is called on the EventNotificationValueHandler.

Parameters:
node - the node whose value has changed

notifySourceValueChanged

public void notifySourceValueChanged(NodeController node,
                                     java.lang.String sourceKey)
Called when com.sdm.quasar.client.core.data.internal.impl.ValueHandler#notifySourceValueChanged(NodeController, String) is called on the EventNotificationValueHandler.

Parameters:
node - the node whose source value has changed
sourceKey - the key of the source node that has changed

notifyChildValueChanged

public void notifyChildValueChanged(NodeController node,
                                    java.lang.String childKey)
Called when com.sdm.quasar.client.core.data.internal.impl.ValueHandler#notifyChildValueChanged(NodeController, String) is called on the EventNotificationValueHandler.

Parameters:
node - the node whose child value has changed
childKey - the key of the child node that has changed