[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Interface for an object to observe other objects.
Source position: classesh.inc line 176
type IFPObserver = interface |
||
procedure FPOObservedChanged(); |
|
Entry point for change notifications |
end; |
|
Interface for an object to observe other objects. |
IFPObserver is the interface an object must implement if it wishes to receive change notifications from another object. The presence of this interface will be checked when the object registers itself using IFPObserver.FPOAttachObserver. The change notifications arrive because the FPOObservedChanged method is called by the observed object.
|
Interface implemented by an object that can be observed. |
|
|
Attach a new observer to the object |