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