continue;
}
IParameterSpecification pspec = spec.getParameter(name);
Direction direction = pspec.getDirection();
if (direction != Direction.IN && direction != Direction.FORM)
{
if (debug)
LOG.debug("Parameter is " + pspec.getDirection().getName() + ".");
continue;
}
if (!direction.getAllowInvariant() && binding.isInvariant())
throw new ConnectedParameterException(
Tapestry.format(
"ParameterManager.incompatible-direction-and-binding",
new Object[] {
name,
_component.getExtendedId(),
direction.getDisplayName(),
binding }),
_component,
name,
null,
binding.getLocation(),