01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/ResourceDescriptionHolder.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: public final class ResourceDescriptionHolder implements
11: org.omg.CORBA.portable.Streamable {
12: public org.cougaar.qos.ResourceStatus.ResourceNode value[] = null;
13:
14: public ResourceDescriptionHolder() {
15: }
16:
17: public ResourceDescriptionHolder(
18: org.cougaar.qos.ResourceStatus.ResourceNode[] initialValue) {
19: value = initialValue;
20: }
21:
22: public void _read(org.omg.CORBA.portable.InputStream i) {
23: value = org.cougaar.qos.ResourceStatus.ResourceDescriptionHelper
24: .read(i);
25: }
26:
27: public void _write(org.omg.CORBA.portable.OutputStream o) {
28: org.cougaar.qos.ResourceStatus.ResourceDescriptionHelper.write(
29: o, value);
30: }
31:
32: public org.omg.CORBA.TypeCode _type() {
33: return org.cougaar.qos.ResourceStatus.ResourceDescriptionHelper
34: .type();
35: }
36:
37: }
|