All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----org.omg.CORBA.AnyHolder
module TheModule interface TheInterface { void operation(in any inArg, inout any ioArg, out any outArg); }; };The operation could be invoked as follows:
TheModule.TheInterface object = <...> org.omg.CORBA.Any inArg = <some any value> org.omg.CORBA.AnyHolder ioArg = new org.omg.CORBA.AnyHolder(<another any value>); org.omg.CORBA.AnyHolder outArg = new org.omg.CORBA.AnyHolder(); System.out.println("Before: inArg=" + inArg.value + " ioArg=" + ioArg.value); object.operation(inArg, ioArg, outArg); System.out.println("After: ioArg=" + ioArg.value + " outArg=" + outArg.value);
public Any value
public AnyHolder()
public AnyHolder(Any value)
All Packages Class Hierarchy This Package Previous Next Index