net.captp.tables
Class Vine

java.lang.Object
  |
  +--net.captp.tables.Vine
All Implemented Interfaces:
Marker, PassByProxy, Runnable

public class Vine
extends Object
implements PassByProxy, Runnable

Untamed: An object to hold onto a remote reference so it will be held onto until we grab the the next "vine".

Part of the 3-party live introduction mechanism.


Field Summary
private  Object myRemote
          The remote reference we hold onto.
 
Fields inherited from interface org.erights.e.elib.serial.PassByProxy
HONORARY, HONORED_NAMES
 
Constructor Summary
Vine(Object remote)
          Enabled: Constructor.
 
Method Summary
 void run()
          Enabled: When asked to run(), we do nothing; really.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

myRemote

private final Object myRemote
The remote reference we hold onto.

All we do is hold onto it. Really.

Constructor Detail

Vine

public Vine(Object remote)
Enabled: Constructor.

Method Detail

run

public void run()
Enabled: When asked to run(), we do nothing; really.

This way we can be scheduled to hold on to myRemote until we're run() and dropped.

Specified by:
run in interface Runnable
See Also:
java.lang.Thread#run()


comments?