static void SetRetrievableObject( Object obj )
Object obj
A reference to the object.
This method instructs the Runtime class to store a reference to an arbitrary Java object for retrieval at a later time. Use the method Runtime.GetRetrievableObject to retrieve a reference to the object.
start CreatePlot( x, y );
declare ScatterPlot plot;
plot = ScatterPlot.Create( "Example", x, y );
Runtime.SetRetrievableObject( plot );
finish;
x = 1:10;
y = 1:10;
run CreatePlot( x, y );
declare Plot plot = Runtime.GetRetrievableObject();
plot.ShowReferenceLines();