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