001 package org.omg.CORBA;
002
003 /**
004 * org/omg/CORBA/CurrentHolder.java .
005 * Generated by the IDL-to-Java compiler (portable), version "3.2"
006 * from /home/iurt/rpm/BUILD/geronimo-spec-corba/src/main/idl/geronimo-orb.idl
007 * Saturday, November 26, 2011 9:53:35 PM UTC
008 */
009
010
011 // actually, Current is pseudo, but we need it this way so everything compiles
012 public final class CurrentHolder implements org.omg.CORBA.portable.Streamable
013 {
014 public org.omg.CORBA.Current value = null;
015
016 public CurrentHolder ()
017 {
018 }
019
020 public CurrentHolder (org.omg.CORBA.Current initialValue)
021 {
022 value = initialValue;
023 }
024
025 public void _read (org.omg.CORBA.portable.InputStream i)
026 {
027 value = org.omg.CORBA.CurrentHelper.read (i);
028 }
029
030 public void _write (org.omg.CORBA.portable.OutputStream o)
031 {
032 org.omg.CORBA.CurrentHelper.write (o, value);
033 }
034
035 public org.omg.CORBA.TypeCode _type ()
036 {
037 return org.omg.CORBA.CurrentHelper.type ();
038 }
039
040 }