:: com :: sun :: star :: util ::

interface XLockable

Methods' Summary
lock locks the component  
unlock unlocks the component  
isLocked determines whether the component is currently locked.  
Methods' Details
lock
void
lock();

Description
locks the component
See also
unlock, isLocked
unlock
void
unlock()
raises( NotLockedException );

Description
unlocks the component
Throws
NotLockedException if the component is not currently locked.
See also
lock, isLocked
isLocked
boolean
isLocked();

Description
determines whether the component is currently locked.
See also
lock, unlock
Top of Page