abstract public class creditApprovalStructHelper {
private static org.omg.CORBA.ORB _orb() {
return org.omg.CORBA.ORB.init();
}
public static borland.reference.creditapproval.CORBAInterface.creditApprovalStruct read(org.omg.CORBA.portable.InputStream _input) {
borland.reference.creditapproval.CORBAInterface.creditApprovalStruct result = new borland.reference.creditapproval.CORBAInterface.creditApprovalStruct();
result.approved = _input.read_boolean();
result.creditCardNumber = _input.read_string();
result.expirationDate = _input.read_string();
result.limit = _input.read_double();
return result;
}
public static void write(org.omg.CORBA.portable.OutputStream _output, borland.reference.creditapproval.CORBAInterface.creditApprovalStruct value) {
_output.write_boolean(value.approved);
_output.write_string(value.creditCardNumber);
_output.write_string(value.expirationDate);
_output.write_double(value.limit);
}
public static void insert(org.omg.CORBA.Any any, borland.reference.creditapproval.CORBAInterface.creditApprovalStruct value) {