return(false);
}
@Override
protected ReferencedAttributeTypeRuleDataREF typeCheck(Object value) throws DmcValueException {
ReferencedAttributeTypeRuleDataREF rc = null;
if (value instanceof ReferencedAttributeTypeRuleDataREF)
rc = (ReferencedAttributeTypeRuleDataREF)value;
else if (value instanceof ReferencedAttributeTypeRuleDataDMO)
rc = new ReferencedAttributeTypeRuleDataREF((ReferencedAttributeTypeRuleDataDMO)value);
else if (value instanceof RuleName)
rc = new ReferencedAttributeTypeRuleDataREF((RuleName)value);
else if (value instanceof String)
rc = new ReferencedAttributeTypeRuleDataREF((String)value);
else
throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with ReferencedAttributeTypeRuleDataREF, ReferencedAttributeTypeRuleDataDMO or String expected."));
return(rc);
}