:: com :: sun :: star :: drawing :: framework ::

interface XResourceController

Methods' Summary
updateStart Called by the configuration manager to make the current configuration reflect the given requested configuration.  
updateEnd Called by the configuration manager to make the current configuration reflect the given requested configuration.  
Methods' Details
updateStart
void
updateStart( [in] XConfiguration  xRequestedConfiguration,
[in] XConfiguration  xCurrentConfiguration,
[in] sequence< XResourceId >  aResourcesToDeactivate );

Description
Called by the configuration manager to make the current configuration reflect the given requested configuration.

The updateEnd() method is called later. Typically the task of updateStart() is to deactivate resources that are no longer requested while the task of updateEnd() is to activate resources that are not yet active.

updateEnd
void
updateEnd( [in] XConfiguration  xRequestedConfiguration,
[in] XConfiguration  xCurrentConfiguration,
[in] sequence< XResourceId >  aResourcesToActivate );

Description
Called by the configuration manager to make the current configuration reflect the given requested configuration.

The updateStart() method is called previously. Typically the task of updateStart() is to deactivate resources that are no longer requested while the task of updateEnd() is to activate resources that are not yet active.

Top of Page