1 23 24 28 package com.sun.jts.otsidl; 29 30 36 37 public final class ResourceStatusHolder implements org.omg.CORBA.portable.Streamable 38 { 39 public com.sun.jts.otsidl.ResourceStatus value = null; 40 41 public ResourceStatusHolder () 42 { 43 } 44 45 public ResourceStatusHolder (com.sun.jts.otsidl.ResourceStatus initialValue) 46 { 47 value = initialValue; 48 } 49 50 public void _read (org.omg.CORBA.portable.InputStream i) 51 { 52 value = com.sun.jts.otsidl.ResourceStatusHelper.read (i); 53 } 54 55 public void _write (org.omg.CORBA.portable.OutputStream o) 56 { 57 com.sun.jts.otsidl.ResourceStatusHelper.write (o, value); 58 } 59 60 public org.omg.CORBA.TypeCode _type () 61 { 62 return com.sun.jts.otsidl.ResourceStatusHelper.type (); 63 } 64 65 } 66 | Popular Tags |