Lines Matching refs:from
453 IEnvironment from, IEnvironment to, Object[] args) in getBridge() argument
457 String name = from.getName() + "_" + to.getName(); in getBridge()
458 String hashName = from.getName() + from.getContext() + "_" in getBridge()
474 Object[] iargs = { from, to, args }; in getBridge()
510 String from, Object fromContext, String to, Object toContext, in getBridgeByName() argument
514 getEnvironment(from, fromContext), getEnvironment(to, toContext), in getBridgeByName()
557 public static IMapping getMapping(IEnvironment from, IEnvironment to) in getMapping() argument
562 bridge = getBridge(from, to, null); in getMapping()
565 bridge = new BridgeTurner(getBridge(to, from, null)); in getMapping()
587 public static IMapping getMappingByName(String from, String to) in getMappingByName() argument
590 return getMapping(getEnvironment(from, null), getEnvironment(to, null)); in getMappingByName()