- java.lang.Object
-
- swim.dynamic.BridgeGuest
-
- All Implemented Interfaces:
GuestWrapper
- Direct Known Subclasses:
GuestAgent
,GuestAgentRoute
,GuestDidClear
,GuestDidClose
,GuestDidCommand
,GuestDidConnect
,GuestDidDisconnect
,GuestDidDownlinkMap
,GuestDidDownlinkValue
,GuestDidDrop
,GuestDidEnter
,GuestDidFail
,GuestDidLeave
,GuestDidMoveIndex
,GuestDidMoveShape
,GuestDidRemoveIndex
,GuestDidRemoveKey
,GuestDidRemoveShape
,GuestDidSet
,GuestDidTake
,GuestDidUpdateIndex
,GuestDidUpdateKey
,GuestDidUpdateShape
,GuestDidUplink
,GuestOnCommand
,GuestOnCue
,GuestOnCueKey
,GuestOnSyncKeys
,GuestPlane
,GuestWillClear
,GuestWillCommand
,GuestWillDownlinkMap
,GuestWillDownlinkValue
,GuestWillDrop
,GuestWillEnter
,GuestWillLeave
,GuestWillMoveIndex
,GuestWillMoveShape
,GuestWillRemoveIndex
,GuestWillRemoveKey
,GuestWillRemoveShape
,GuestWillSet
,GuestWillTake
,GuestWillUpdateIndex
,GuestWillUpdateKey
,GuestWillUpdateShape
,GuestWillUplink
public class BridgeGuest extends Object implements GuestWrapper
A host object that wraps a guest value and its dynamic bridge. Used as a base class for strongly typed host objects that wrap guest values, such as host functional interface implementations that invoke guest functions.
-
-
Constructor Summary
Constructors Constructor Description BridgeGuest(Bridge bridge, Object guest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Bridge
bridge()
Object
unwrap()
Returns the guest value that this host object wraps.
-
-
-
Method Detail
-
bridge
public final Bridge bridge()
-
unwrap
public final Object unwrap()
Description copied from interface:GuestWrapper
Returns the guest value that this host object wraps.- Specified by:
unwrap
in interfaceGuestWrapper
-
-