ImageGearJava Project > com.accusoft.imagegear.utility Package : ImGearRefObject<T> Class |
T
.
You might use it as follows:
Mutable inVal = new Mutable();
// create an ImGearRefObject below with an argvalue referring to inVal.
ImGearRefObject<Mutable> refArg = new ImGearRefObject<Mutable>(inVal);
// exchangeInOutArg() below may not only modify
// (the internal state of) inVal, but may also reassign refArg.argvalue
// to a new instance of Mutable.
exchangeInOutArg(refArg);
// now, perhaps refArg.argvalue != inVal.
// assign the potentially new value to outVal below.
Mutable outVal = refArg.argvalue;
public sealed class ImGearRefObject<T> extends Object |
java.lang.Object
com.accusoft.imagegear.utility.ImGearRefObject<T>