eUnset
eUnset is a method in the Eclipse Modeling Framework (EMF) that unsets a feature of an EObject. In EMF, modeled data is accessed through EObjects, which support generic access via eGet, eSet, eIsSet, and eUnset in addition to type-safe accessors generated from the model. The eUnset operation removes the value of a feature or marks it as not set, depending on the feature's characteristics, and is used in reflective tooling and in generated code.
The method has two common forms: eUnset(int featureID) and eUnset(EStructuralFeature feature). The implementation is generated for
eUnset participates in change notification and persistence. Calling eUnset usually fires a notification to registered adapters
See also: eGet, eSet, eIsSet, EObject, EStructuralFeature, unsettable, Ecore.