IMetamodels.RemoveSuperClasses(IClass,string,bool) Method
Namespace: NextDesign.Core
Description
Removes the superclasses of the specified class.
Any classes that are not included in the superclasses of the specified class will be skipped.
When deleting the inheritance relationship of a class, the model of the inherited class will also be deleted.
For how to specify class names and the fuzzy match option, see the description of IMetamodels.
Arguments
Name | Type | Description |
---|---|---|
target | IClass | Target class |
superClassNames | string | Superclass name You can specify multiple class names separated by commas. |
fuzzy | bool | Fuzzy match option The default value is true. If fuzzy is set to false, the class name is evaluated as a fully qualified name. If a class with the same name exists, you can specify the expected class by setting fuzzy to false and specifying the fully qualified name in superClassNames. |
Return value
- void
Exceptions
Name | Exception class | Description |
---|---|---|
Class not found | ExtensionTypeNotFoundException | Specified class not found |
Profile editing not possible | ExtensionEditProfileException | Profile editing operation failed |