EhrDatatypeChangeListener

public interface EhrDatatypeChangeListener<T extends EhrDatatype>

The listener interface for receiving ehrDatatypeChange events. The class that is interested in processing a ehrDatatypeChange event implements this interface, and the object created with that class is registered with a component using the component’s EhrDatatype.setDatatypeChangeListener(EhrDatatypeChangeListener) method. When the ehrDatatypeChange event occurs, that object’s appropriate method is invoked.

Parameters:
  • <T> – the generic datatype extending the EhrDatatype

Methods

onEhrDatatypeChanged

public void onEhrDatatypeChanged(T datatype)

Called when a datatype changed its content.

Parameters:
  • datatype – the datatype with the updated value