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