Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

RxArrayHolder.java

00001 package sctConf;
00002 
00003 
00012 //   typedef octet RxArray[4];
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 }

Generated on Thu Jul 15 09:55:48 2004 for SCT DAQ/DCS Software - Java by doxygen 1.3.5