* Sets notifyOriginator to the specified value.
* @param value A value compatible with DmcTypeBooleanSV
*/
// org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
public void setNotifyOriginator(Object value) throws DmcValueException {
DmcTypeBooleanSV attr = (DmcTypeBooleanSV) get(DmpDMSAG.__notifyOriginator);
if (attr == null)
attr = new DmcTypeBooleanSV(DmpDMSAG.__notifyOriginator);
attr.set(value);
set(DmpDMSAG.__notifyOriginator,attr);
}