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