* @param peer the peer
*/
public void installInputPeerDelegate(BridgePeer peer)
{
Object obj = peer.getComponentObject();
InputDelegate delegate = resolveDelegate(obj.getClass());
if (delegate == null)
{
throw new RuntimeException("Cannot resolve input delegate for " + peer);
} else
{