1 7 package org.omg.CORBA; 8 9 10 19 20 public final class DoubleSeqHolder implements org.omg.CORBA.portable.Streamable 21 { 22 public double value[] = null; 23 24 public DoubleSeqHolder () 25 { 26 } 27 28 public DoubleSeqHolder (double[] initialValue) 29 { 30 value = initialValue; 31 } 32 33 public void _read (org.omg.CORBA.portable.InputStream i) 34 { 35 value = org.omg.CORBA.DoubleSeqHelper.read (i); 36 } 37 38 public void _write (org.omg.CORBA.portable.OutputStream o) 39 { 40 org.omg.CORBA.DoubleSeqHelper.write (o, value); 41 } 42 43 public org.omg.CORBA.TypeCode _type () 44 { 45 return org.omg.CORBA.DoubleSeqHelper.type (); 46 } 47 48 } 49 | Popular Tags |