}
/** Returns true if the value of the parameter is ok. */
@Override
protected boolean checkParam(final String param, final Value newValue) {
final CrmXml crmXML = getBrowser().getCrmXml();
if (newValue == null) {
return crmXML.checkMetaAttrParam(param, null);
} else {
return crmXML.checkMetaAttrParam(param, newValue);
}
}