- /*
 - * @(#)CurrentHolder.java 1.4 00/02/02
 - *
 - * Copyright 1999, 2000 Sun Microsystems, Inc. All Rights Reserved.
 - *
 - * This software is the proprietary information of Sun Microsystems, Inc.
 - * Use is subject to license terms.
 - *
 - */
 - package org.omg.CORBA;
 - /**
 - * org/omg/CORBA/CurrentHolder.java
 - * Generated by the IDL-to-Java compiler (portable), version "3.0"
 - * from ../../../../../src/share/classes/org/omg/PortableServer/corba.idl
 - * Saturday, July 17, 1999 12:26:21 AM PDT
 - */
 - public final class CurrentHolder implements org.omg.CORBA.portable.Streamable
 - {
 - public org.omg.CORBA.Current value = null;
 - public CurrentHolder ()
 - {
 - }
 - public CurrentHolder (org.omg.CORBA.Current initialValue)
 - {
 - value = initialValue;
 - }
 - public void _read (org.omg.CORBA.portable.InputStream i)
 - {
 - value = org.omg.CORBA.CurrentHelper.read (i);
 - }
 - public void _write (org.omg.CORBA.portable.OutputStream o)
 - {
 - org.omg.CORBA.CurrentHelper.write (o, value);
 - }
 - public org.omg.CORBA.TypeCode _type ()
 - {
 - return org.omg.CORBA.CurrentHelper.type ();
 - }
 - }