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