return remove(key);
}
else
{
Object o = super.put(key, value);
AttributeKey attrKey = getAttributeKey(key);
if (attrKey != null)
{
// If there's no local value, then we're not shadowing;
// set up a new ValueExpressionBoundValue
if (getLocalProperty(key) == null)
{
ValueExpression expression = (ValueExpression) value;
_node.setAttributeValue(attrKey,
new ValueExpressionBoundValue(expression));
}
}
return o;
}
}
public Object remove(PropertyKey key)
{
Object o = super.remove(key);
if (o == null)
return null;
AttributeKey attrKey = getAttributeKey(key);
if (attrKey != null)
{
// If there's no local value, then we're not shadowing,
// and the value is just null now
if (getLocalProperty(key) == null)