Package com.sun.star.uno
Interface IBridge
Deprecated.
As of UDK 3.2, this interface is deprecated, without offering a
 replacement.
This is abstract interface for bridges.
 
Bridges are able to map one object from one UNO environment to another and vice versa.
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoidacquire()Deprecated.Increases the life count.voiddispose()Deprecated.Disposes the bridge.Deprecated.Returns the source environment.Deprecated.Returns the destination environment.mapInterfaceFrom(Object object, Type type) Deprecated.Maps an object from the destination environment to the source environment.mapInterfaceTo(Object object, Type type) Deprecated.Maps an object from the source environment to the destination environment.voidrelease()Deprecated.Decreases the life count.
- 
Method Details- 
mapInterfaceToDeprecated.Maps an object from the source environment to the destination environment.- Parameters:
- object- the object to map
- type- the type of the interface that shall be mapped
- Returns:
- the object in the destination environment
 
- 
mapInterfaceFromDeprecated.Maps an object from the destination environment to the source environment.- Parameters:
- object- the object to map
- type- the type of the interface that shall be mapped
- Returns:
- the object in the source environment
 
- 
getSourceEnvironmentIEnvironment getSourceEnvironment()Deprecated.Returns the source environment.- Returns:
- the source environment of this bridge
 
- 
getTargetEnvironmentIEnvironment getTargetEnvironment()Deprecated.Returns the destination environment.- Returns:
- the destination environment of this bridge
 
- 
acquirevoid acquire()Deprecated.Increases the life count.
- 
releasevoid release()Deprecated.Decreases the life count.If the life count drops to zero, the bridge disposes itself. 
- 
disposeDeprecated.Disposes the bridge.Sends involved threads an InterruptedException. Releases mapped objects.- Throws:
- InterruptedException- it's deprecated so who cares.
- IOException- it's deprecated so who cares.
 
 
-