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