1 28 29 30 package org.objectweb.corba.runtime; 31 32 35 public class ValueFactoryImpl 36 extends org.omg.CORBA.LocalObject  37 implements ValueFactory 38 { 39 private String _type_id; 41 private org.omg.CORBA.portable.ValueFactory _value_factory; 42 43 public 45 ValueFactoryImpl(String tid, org.omg.CORBA.portable.ValueFactory vfact) 46 { 47 _type_id = tid; 49 _value_factory = vfact; 50 } 51 52 56 final public String  57 type_id() 58 { 59 return _type_id; 60 } 61 62 final public org.omg.CORBA.portable.ValueFactory  63 value_factory() 64 { 65 return _value_factory; 66 } 67 } 68 | Popular Tags |