01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/ParameterListHolder.java .
05: * Generated by the IDL-to-Java compiler (portable), version "3.2"
06: * from qrs.idl
07: * Tuesday, August 7, 2007 11:57:30 AM EDT
08: */
09:
10: // sorts of values.
11: public final class ParameterListHolder implements
12: org.omg.CORBA.portable.Streamable {
13: public String value[] = null;
14:
15: public ParameterListHolder() {
16: }
17:
18: public ParameterListHolder(String[] initialValue) {
19: value = initialValue;
20: }
21:
22: public void _read(org.omg.CORBA.portable.InputStream i) {
23: value = org.cougaar.qos.ResourceStatus.ParameterListHelper
24: .read(i);
25: }
26:
27: public void _write(org.omg.CORBA.portable.OutputStream o) {
28: org.cougaar.qos.ResourceStatus.ParameterListHelper.write(o,
29: value);
30: }
31:
32: public org.omg.CORBA.TypeCode _type() {
33: return org.cougaar.qos.ResourceStatus.ParameterListHelper
34: .type();
35: }
36:
37: }
|