How to remove attribute from owner in modelio?
Here is my code;
EList<Attribute> attributeList = classifier.getOwnedAttribute();
attributeList.removeAll(attributeList);
How to remove attribute from owner in modelio?
Here is my code;
EList<Attribute> attributeList = classifier.getOwnedAttribute();
attributeList.removeAll(attributeList);
Hello, Your code only detach the attributes from their owner, it does not delete them.
To delete one of them, use:
If you want to delete all of them, use :
Do not write:
You may write instead:
but it is less efficient than the first solution.