00001 package sctConf;
00002
00011
00012 public final class ABCDConfigHolder implements org.omg.CORBA.portable.Streamable
00013 {
00014 public sctConf.ABCDConfig value = null;
00015
00016 public ABCDConfigHolder ()
00017 {
00018 }
00019
00020 public ABCDConfigHolder (sctConf.ABCDConfig initialValue)
00021 {
00022 value = initialValue;
00023 }
00024
00025 public void _read (org.omg.CORBA.portable.InputStream i)
00026 {
00027 value = sctConf.ABCDConfigHelper.read (i);
00028 }
00029
00030 public void _write (org.omg.CORBA.portable.OutputStream o)
00031 {
00032 sctConf.ABCDConfigHelper.write (o, value);
00033 }
00034
00035 public org.omg.CORBA.TypeCode _type ()
00036 {
00037 return sctConf.ABCDConfigHelper.type ();
00038 }
00039
00040 }