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