01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: final public class DoubleSeqHolder implements
07: org.omg.CORBA.portable.Streamable {
08:
09: public double[] value;
10:
11: public DoubleSeqHolder() {
12: }
13:
14: public DoubleSeqHolder(double[] initial) {
15: value = initial;
16: }
17:
18: public void _read(org.omg.CORBA.portable.InputStream is) {
19: value = DoubleSeqHelper.read(is);
20: }
21:
22: public void _write(org.omg.CORBA.portable.OutputStream os) {
23: DoubleSeqHelper.write(os, value);
24: }
25:
26: public org.omg.CORBA.TypeCode _type() {
27: return DoubleSeqHelper.type();
28: }
29: }
|