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