* an element supporting inherit scope attributes
*/
private void handleInheritedScopeAttribute(Attributes attributes, AdvancedInheritableItem inheritScopeElement) {
String inheritScopeValue = getSettings().substitute(attributes.getValue("inherit-scope"));
if (inheritScopeValue != null) {
InheritableScope scope = InheritableScope.valueOf(inheritScopeValue.toUpperCase());
inheritScopeElement.setInheritScope(scope);
}
String inheritableValue = getSettings().substitute(attributes.getValue("inheritable"));
if (inheritableValue != null) {