interface XDispatchProviderInterceptor in module com::sun::star::frame::

(Global Index)

Syntax

interface XDispatchProviderInterceptor : com::sun::star::frame::XDispatchProvider ;

Description

makes it possible to intercept request of XDispatch .

Method Summary

getSlaveDispatchProvider

setSlaveDispatchProvider sets the slave XDispatchProvider to which calls to XDispatchProvider::queryDispatch can be forwarded under control of this dispatch provider.

getMasterDispatchProvider

setMasterDispatchProvider sets the master XDispatchProvider , which may forward calls to its XDispatchProvider::queryDispatch to this dispatch provider.

Method Details



getSlaveDispatchProvider

Syntax

com::sun::star::frame::XDispatchProvider getSlaveDispatchProvider ();

Returns

the slave XDispatchProvider to which calls to XDispatchProvider::queryDispatch can be forwarded under control of this dispatch provider.

setSlaveDispatchProvider

Syntax

void setSlaveDispatchProvider (
com::sun::star::frame::XDispatchProvider xNewDispatchProvider );

Description

sets the slave XDispatchProvider to which calls to XDispatchProvider::queryDispatch can be forwarded under control of this dispatch provider.


getMasterDispatchProvider

Syntax

com::sun::star::frame::XDispatchProvider getMasterDispatchProvider ();

Returns

the master XDispatchProvider , which may forward calls to its XDispatchProvider::queryDispatch to this dispatch provider.

setMasterDispatchProvider

Syntax

void setMasterDispatchProvider (
com::sun::star::frame::XDispatchProvider xNewSupplier );

Description

sets the master XDispatchProvider , which may forward calls to its XDispatchProvider::queryDispatch to this dispatch provider.

Top of Page