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