public void handleInput(Object comObject, Object input) throws InputException
{
BridgePeer peer = (BridgePeer) getContext().getPeer(comObject);
if (peer != null)
{
peer.processInput(this, input);
//handleInput(peer, input);
} else
{
_logger.warning("Component " + comObject + " has no peer");
//throw new IllegalStateException("Component " + comObject + " has no peer");