protected void addAttributeChange(
String attributeName,
Object attributeValue)
{
AttributeComponentChange aa;
FacesContext context = getFacesContext();
if (attributeValue instanceof RowKeySet)
{
aa = new RowKeySetAttributeChange(getClientId(context),
attributeName,
attributeValue);
}
else
{
aa = new AttributeComponentChange(attributeName, attributeValue);
}
RequestContext adfContext = RequestContext.getCurrentInstance();
adfContext.getChangeManager().addComponentChange(context, this, aa);
}