interface XConnectable in module com::sun::star::io::

(Global Index)

Syntax

interface XConnectable : com::sun::star::uno::XInterface ;

Description

makes it possible to connect data sinks and sources.

The predecessor-member is the element in the connection that is nearer to the source of the data. The successor-member is the element that is further away from the source of the data. (Note that this classification does not depend on whether the class implements XInputStream or XOutputStream ; it only depends on the direction of data flow.)

This interface allows generic services to navigate between arbitrary elements of a connection.

Method Summary

setPredecessor sets the source of the data flow for this object.

getPredecessor

setSuccessor sets the sink of the data flow for this object.

getSuccessor

Method Details



setPredecessor

Syntax

void setPredecessor (
com::sun::star::io::XConnectable aPredecessor );

Description

sets the source of the data flow for this object.


getPredecessor

Syntax

com::sun::star::io::XConnectable getPredecessor ();

Description

Returns

the predecessor of this object.

setSuccessor

Syntax

void setSuccessor (
com::sun::star::io::XConnectable aSuccessor );

Description

sets the sink of the data flow for this object.


getSuccessor

Syntax

com::sun::star::io::XConnectable getSuccessor ();

Description

Returns

the successor of this object.
Top of Page