home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / 3rdParty / jbuilder / TRIAL / JBUILDER / JVISBRKR.Z / applicantInfoStructHolder.java < prev    next >
Encoding:
Java Source  |  1998-05-08  |  2.6 KB  |  68 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.reference.creditapproval.CORBAInterface;
  21. /**
  22. <p>
  23. <ul>
  24. <li> <b>Java Class</b> borland.reference.creditapproval.CORBAInterface.applicantInfoStructHolder
  25. <li> <b>Source File</b> borland/reference/creditapproval/CORBAInterface/applicantInfoStructHolder.java
  26. <li> <b>IDL Source File</b> C:/JBuilder/samples/borland/reference/creditapproval/CreditApproval.idl
  27. <li> <b>IDL Absolute Name</b> ::borland::reference::creditapproval::CORBAInterface::applicantInfoStruct
  28. <li> <b>Repository Identifier</b> IDL:borland/reference/creditapproval/CORBAInterface/applicantInfoStruct:1.0
  29. </ul>
  30. <b>IDL definition:</b>
  31. <pre>
  32.     struct applicantInfoStruct {
  33.       string firstName;
  34.       string MI;
  35.       string lastName;
  36.       string address1;
  37.       string address2;
  38.       string city;
  39.       string state;
  40.       string postalCode;
  41.       string country;
  42.       string phone;
  43.       string PID;
  44.       string DOB;
  45.       double monthlyIncome;
  46.       double rentMortgagePayment;
  47.     };
  48. </pre>
  49. </p>
  50. */
  51. final public class applicantInfoStructHolder implements org.omg.CORBA.portable.Streamable {
  52.   public borland.reference.creditapproval.CORBAInterface.applicantInfoStruct value;
  53.   public applicantInfoStructHolder() {
  54.   }
  55.   public applicantInfoStructHolder(borland.reference.creditapproval.CORBAInterface.applicantInfoStruct value) {
  56.     this.value = value;
  57.   }
  58.   public void _read(org.omg.CORBA.portable.InputStream input) {
  59.     value = applicantInfoStructHelper.read(input);
  60.   }
  61.   public void _write(org.omg.CORBA.portable.OutputStream output) {
  62.     applicantInfoStructHelper.write(output, value);
  63.   }
  64.   public org.omg.CORBA.TypeCode _type() {
  65.     return applicantInfoStructHelper.type();
  66.   }
  67. }
  68.