return errorCode;
}
else {
// check the values are the same. NB - this should not be a string
// comparison REVISIT when we have new datatype design!
ValidatedInfo baseFixedValue=(baseAttrUse.fDefault!=null ?
baseAttrUse.fDefault: baseAttrDecl.fDefault);
ValidatedInfo thisFixedValue=(attrUse.fDefault!=null ?
attrUse.fDefault: attrDecl.fDefault);
if (!baseFixedValue.normalizedValue.equals(thisFixedValue.normalizedValue)) {
errorCode="derivation-ok-restriction.2.1.3";
return errorCode;
}