* Sets genContext to the specified value.
* @param value A value compatible with DmcTypeGenerationContextREFSV
*/
// org.dmd.dms.util.GenUtility.formatSV(GenUtility.java:867)
public void setGenContext(Object value) throws DmcValueException {
DmcTypeGenerationContextREFSV attr = (DmcTypeGenerationContextREFSV) get(DmgDMSAG.__genContext);
if (attr == null)
attr = new DmcTypeGenerationContextREFSV(DmgDMSAG.__genContext);
else
attr.removeBackReferences();
attr.set(value);
set(DmgDMSAG.__genContext,attr);
}