Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: frame ::

interface XDispatchProvider

Base Interface
com::sun::star::uno::XInterface

Description
provides XDispatch interfaces for certain functions which are useful at the UI.


Known Services which Export this Interface

com::sun::star::sdb::DataSourceBrowser implements a component which allows browsing the data sources registered on the system.
com::sun::star::frame::Frame represents the environment for a desktop component.
com::sun::star::frame::Controller is an abstract service for a component which offers a deeper integration of desktop components than a UnoControl can offer.

Methods' Summary

queryDispatch searches for an XDispatch for the specified URL within the specified target frame.
queryDispatches

Methods' Details

queryDispatch
 
com::sun::star::frame::XDispatch
queryDispatch(
[ in ] com::sun::star::util::URL aURL,
[ in ] string aTargetFrameName,
[ in ] long nSearchFlags );

Description
searches for an XDispatch for the specified URL within the specified target frame.
See also
XFrame::findFrame
See also
queryDispatches
queryDispatches
 
sequence< com::sun::star::frame::XDispatch >
queryDispatches(
[ in ] sequence< com::sun::star::frame::DispatchDescriptor > aDescripts );

Returns
multiple dispatch interfaces for the specified descriptors at once.

Actually this method is redundant to XDispatchProvider::queryDispatch to avoid multiple remote calls.


Top of Page