private void startParameter(Attributes attributes)
{
String parameterName = findSingleParameter("parameter", "name", attributes);
if (InternalUtils.isBlank(parameterName))
throw new TapestryException(ServicesMessages.parameterElementNameRequired(),
getCurrentLocation(), null);
_tokens.add(new ParameterToken(parameterName, getCurrentLocation()));
}