1 18 package org.apache.geronimo.interop.rmi.iiop.compiler; 19 20 import java.lang.reflect.Method ; 21 22 23 public class StubClass { 24 private Class stubClass; 25 private Method getInstanceMethod; 26 27 public StubClass( Class stubClass, Method getInstanceMethod ) 28 { 29 this.stubClass = stubClass; 30 this.getInstanceMethod = getInstanceMethod; 31 } 32 33 public Class getStubClass() 34 { 35 return stubClass; 36 } 37 38 public Method getGetInstanceMethod() 39 { 40 return getInstanceMethod; 41 } 42 } 43 | Popular Tags |