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