/* * @(#)UnknownUserExceptionHolder.java 1.5 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package org.omg.CORBA; /** * The Holder for UnknownUserException. For more information on * Holder files, see * "Generated Files: Holder Files".

* org/omg/CORBA/UnknownUserExceptionHolder.java * Generated by the IDL-to-Java compiler (portable), version "3.0" * from CORBA.idl * Thursday, August 24, 2000 5:52:22 PM PDT */ public final class UnknownUserExceptionHolder implements org.omg.CORBA.portable.Streamable { public org.omg.CORBA.UnknownUserException value = null; public UnknownUserExceptionHolder () { } public UnknownUserExceptionHolder (org.omg.CORBA.UnknownUserException initialValue) { value = initialValue; } public void _read (org.omg.CORBA.portable.InputStream i) { value = org.omg.CORBA.UnknownUserExceptionHelper.read (i); } public void _write (org.omg.CORBA.portable.OutputStream o) { org.omg.CORBA.UnknownUserExceptionHelper.write (o, value); } public org.omg.CORBA.TypeCode _type () { return org.omg.CORBA.UnknownUserExceptionHelper.type (); } }