/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.excepiiop.interfaces;

/**
* org/jboss/test/excepiiop/interfaces/IdlExceptionHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.1"
* from IdlException.idl
* Thursday, July 17, 2003 6:39:23 PM BRT
*/

public final class IdlExceptionHolder implements org.omg.CORBA.portable.Streamable
{
  public org.jboss.test.excepiiop.interfaces.IdlException value = null;

  public IdlExceptionHolder ()
  {
  }

  public IdlExceptionHolder (org.jboss.test.excepiiop.interfaces.IdlException initialValue)
  {
    value = initialValue;
  }

  public void _read (org.omg.CORBA.portable.InputStream i)
  {
    value = org.jboss.test.excepiiop.interfaces.IdlExceptionHelper.read (i);
  }

  public void _write (org.omg.CORBA.portable.OutputStream o)
  {
    org.jboss.test.excepiiop.interfaces.IdlExceptionHelper.write (o, value);
  }

  public org.omg.CORBA.TypeCode _type ()
  {
    return org.jboss.test.excepiiop.interfaces.IdlExceptionHelper.type ();
  }

}