FileDocCategorySizeDatePackage
AccountHolder.javaAPI DocExample795Thu Nov 08 00:23:38 GMT 2001com.ora.rmibook.chapter23.corbaaccounts

AccountHolder.java

package com.ora.rmibook.chapter23.corbaaccounts;


/**
 * AccountHolder.java
 * Generated by the IDL-to-Java compiler (portable), version "3.0"
 * from Account.idl
 * Saturday, December 16, 2000 10:18:17 PM PST
 */

public final class AccountHolder implements org.omg.CORBA.portable.Streamable {
    public Account value = null;

    public AccountHolder () {
    }

    public AccountHolder (Account initialValue) {
        value = initialValue;
    }

    public void _read(org.omg.CORBA.portable.InputStream i) {
        value = AccountHelper.read(i);
    }

    public void _write(org.omg.CORBA.portable.OutputStream o) {
        AccountHelper.write(o, value);
    }

    public org.omg.CORBA.TypeCode _type() {
        return AccountHelper.type();
    }

}