Lines Matching refs:it

39 /** makes it possible to release any objects in a ordered manner by using
43 If an object should be terminated, it can be:<br>
45 …<li>disposed (if it supports <member scope="com::sun::star::lang">XComponent::dispose()</member>)<…
46 <li>closed (if it supports <member>XCloseable::close()</member>)</li>
55 Base interface <type>XCloseBroadcaster</type> makes it possible that any listener
58 <li>can get a notification about closing of it</li>
74 … But nobody can guarantee real closing of called object - because it can disagree with that if any
77 …the <type>CloseVetoException</type>. Otherwise (if nothing exist to disagree) it must return norm…
88 …If somewhere disagree with a CloseVetoException it will not clear who has to close the object again
90 …If it is set to <FALSE/> the caller of the method close() will be the owner of this object in ever…
91 … Then it's not allowed to call close() from any other place (may a registered XCloseListener).
92 …If it is set to <TRUE/> the caller gives up his ownership. If a XCloseListener throw the veto exce…
95 …he MUST try to close it again. If the closing object itself disagrees by an exception and the para…
98 There is no way to get the ownership back if it was delivered!
102 …If this method was already called on an object it should return without any reaction. Normally it'…
105 … but it shouldn't be used here. The veto exception should be the only way to indicates the result.
113 …CloseVetoExceptions and try it again at a later time. This can be useful for a generic UI handling.