1 18 19 package org.objectweb.jac.core.dist.rmi; 20 21 import org.objectweb.jac.core.dist.RemoteContainer; 22 import org.objectweb.jac.core.dist.RemoteRef; 23 24 25 31 32 public class RMIRemoteRef extends RemoteRef { 33 34 36 37 public RMIRemoteRef() {} 38 39 45 46 public RMIRemoteRef(RemoteContainer remCont, int remIndex) { 47 super(remCont, remIndex); 48 } 49 50 51 57 public RMIRemoteRef(String remCont, int remIndex) { 58 super(remCont, remIndex); 59 } 60 61 68 69 public RemoteContainer resolve( String contName ) { 70 return RMINaming.resolve(contName); 71 } 72 73 84 85 public RemoteContainer reresolve() { return null; } 86 87 } 88 | Popular Tags |