Class XModifyAdapter

class ooodev.listeners.x_modify_adapter.XModifyAdapter(*args, **kwargs)[source]

makes it possible to receive events when a model object changes.

This class is meant a parent class.

Parameters:
  • args (Any) –

  • kwargs (Any) –

Return type:

Any

disposing(event)[source]

gets called when the broadcaster is about to be disposed.

All listeners and all other objects, which reference the broadcaster should release the reference to the source. No method should be invoked anymore on this object ( including XComponent.removeEventListener() ).

This method is called for every listener registration of derived listener interfaced, not only for registrations at XComponent.

Return type:

None

Parameters:

event (EventObject) –

modified(event)[source]

is called when something changes in the object.

Due to such an event, it may be necessary to update views or controllers.

The source of the event may be the content of the object to which the listener is registered.

Return type:

None

Parameters:

event (com.sun.star.lang.EventObject) –