:: com :: sun :: star :: xml :: crypto :: sax ::

interface XDecryptionResultBroadcaster
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XDecryptionResultBroadcaster
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Usage Restrictions
not published
Description
* Interface of Decryption Result Broadcaster. *

* This interface is used to manipulate decryption result listener.


Methods' Summary
addDecryptionResultListener * Adds a new decryption result listener. *  
removeDecryptionResultListener * Removes a decryption result listener. *  
Methods' Details
addDecryptionResultListener
void
addDecryptionResultListener( [in] XDecryptionResultListener  listener )
raises( ::com::sun::star::uno::Exception );

Description
* Adds a new decryption result listener. *

* When the decryption is finished, the result information will be sent to this * listener. * *

Parameter listener
the listener to be added
removeDecryptionResultListener
void
removeDecryptionResultListener( [in] XDecryptionResultListener  listener );

Description
* Removes a decryption result listener. *

* After a listener is removed, no result information will be sent to it. * *

Parameter listener
the listener to be removed
Top of Page