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