1 29 30 package com.caucho.iiop.orb; 31 32 import java.lang.reflect.Method ; 33 import java.util.HashMap ; 34 35 38 public class IiopStub { 39 private final HashMap <Method ,MethodMarshal> _methodMap 40 = new HashMap <Method ,MethodMarshal>(); 41 42 private Class _cl; 43 44 IiopStub(Class cl) 45 { 46 _cl = cl; 47 } 48 49 Object invoke(Method method) 50 { 51 MethodMarshal marshal = _methodMap.get(method); 52 53 return null; 55 } 56 } 57 | Popular Tags |