1 28 29 30 package org.objectweb.ccm.logdemo; 31 32 35 public class AsyncMessageFactoryImpl 36 implements org.omg.CORBA.portable.ValueFactory  37 { 38 public 39 AsyncMessageFactoryImpl() 40 { 41 } 42 43 47 static public org.omg.CORBA.portable.ValueFactory  48 create_factory() 49 { 50 return new AsyncMessageFactoryImpl(); 51 } 52 53 57 static public AsyncMessage 58 create_valuetype() 59 { 60 return new AsyncMessageImpl(); 61 } 62 63 67 public java.io.Serializable 68 read_value(org.omg.CORBA_2_3.portable.InputStream in) 69 { 70 return in.read_value(create_valuetype()); 72 } 73 } 74 | Popular Tags |