All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----org.omg.CORBA.IntHolder
module TheModule interface TheInterface { void operation(in long inArg, inout long ioArg, out long outArg); }; };The operation could be invoked as follows:
TheModule.TheInterface object = <...> int inArg = <some long value> org.omg.CORBA.IntHolder ioArg = new org.omg.CORBA.IntHolder(<another long value>); org.omg.CORBA.IntHolder outArg = new org.omg.CORBA.IntHolder(); 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 int value
public IntHolder()
public IntHolder(int value)
All Packages Class Hierarchy This Package Previous Next Index