01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/ResourceNodeHolder.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 ResourceNodeHolder implements
11: org.omg.CORBA.portable.Streamable {
12: public org.cougaar.qos.ResourceStatus.ResourceNode value = null;
13:
14: public ResourceNodeHolder() {
15: }
16:
17: public ResourceNodeHolder(
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.ResourceNodeHelper
24: .read(i);
25: }
26:
27: public void _write(org.omg.CORBA.portable.OutputStream o) {
28: org.cougaar.qos.ResourceStatus.ResourceNodeHelper.write(o,
29: value);
30: }
31:
32: public org.omg.CORBA.TypeCode _type() {
33: return org.cougaar.qos.ResourceStatus.ResourceNodeHelper.type();
34: }
35:
36: }
|