1 28 29 30 package org.objectweb.ccm.runtime; 31 32 import org.objectweb.corba.runtime.*; 33 34 37 public class ConfigValueFactoryImpl 38 implements org.omg.CORBA.portable.ValueFactory 39 { 40 public 42 ConfigValueFactoryImpl() 43 { 44 } 45 46 50 static public org.omg.CORBA.portable.ValueFactory 51 create_factory() 52 { 53 return new ConfigValueFactoryImpl(); 54 } 55 56 60 static public org.omg.CORBA.portable.ValueBase 61 create_valuetype() 62 { 63 return new ConfigValueImpl(); 64 } 65 66 70 public java.io.Serializable 71 read_value(org.omg.CORBA_2_3.portable.InputStream is) 72 { 73 return is.read_value(create_valuetype()); 75 } 76 } 77 | Popular Tags |