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