package com.ora.rmibook.chapter23.corbaaccounts;
/**
* NegativeAmountExceptionHolder.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 NegativeAmountExceptionHolder implements org.omg.CORBA.portable.Streamable {
public NegativeAmountException value = null;
public NegativeAmountExceptionHolder () {
}
public NegativeAmountExceptionHolder (NegativeAmountException initialValue) {
value = initialValue;
}
public void _read(org.omg.CORBA.portable.InputStream i) {
value = NegativeAmountExceptionHelper.read(i);
}
public void _write(org.omg.CORBA.portable.OutputStream o) {
NegativeAmountExceptionHelper.write(o, value);
}
public org.omg.CORBA.TypeCode _type() {
return NegativeAmountExceptionHelper.type();
}
}
|