mixinName,
parameterName), null, null);
String simpleName = parameterName.substring(dotx + 1);
ParameterModel pm = mixinResources.getComponentModel().getParameterModel(simpleName);
return pm != null ? pm.getDefaultBindingPrefix() : null;
}
// A formal parameter of the core component?
ParameterModel pm = _coreResources.getComponentModel().getParameterModel(parameterName);
if (pm != null)
return pm.getDefaultBindingPrefix();
// Search for mixin that it is a formal parameter of
for (String mixinName : InternalUtils.sortedKeys(_mixinsByShortName))
{
InternalComponentResources resources = _mixinsByShortName.get(mixinName);
pm = resources.getComponentModel().getParameterModel(parameterName);
if (pm != null)
return pm.getDefaultBindingPrefix();
}
// Not a formal parameter of the core component or any mixin.
return null;