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

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

interface XChainable

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

Description
enables the object to be a member of a chain.


Known Services which Export this Interface

com::sun::star::text::ChainedTextFrame extends a TextFrame which shares the same Text with other ChainedTextFrame instances that will make the text flow through the chained frames.

Methods' Summary

getPredecessor
getSuccessor
setSuccessor connects the specified object to this object as the successor in a chain.
isChainable checks if the specified object can be linked to this.

Methods' Details

getPredecessor
 
com::sun::star::util::XChainable
getPredecessor();
Returns
the previous object in this chain or NULL, if this is the first object of this chain.
getSuccessor
 
com::sun::star::util::XChainable
getSuccessor();
Returns
the next object in this chain or NULL, if this is the last object in this chain.
setSuccessor
 
void
setSuccessor(
[ in ] com::sun::star::util::XChainable xChainable )
raises ( com::sun::star::lang::IllegalArgumentException );

Description
connects the specified object to this object as the successor in a chain.

This implies that this object will become the predecessor of xChainable .

isChainable
 
boolean
isChainable(
[ in ] com::sun::star::util::XChainable xChainable );

Description
checks if the specified object can be linked to this.

Top of Page