public interface MetaObjectChangeListener extends EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
metaObjectAdded(MetaObjectChangeEvent moce)
Shall be invoked if a
MetaObject is added. |
void |
metaObjectChanged(MetaObjectChangeEvent moce)
Shall be invoked if a
MetaObject is changed. |
void |
metaObjectRemoved(MetaObjectChangeEvent moce)
Shall be invoked if a
MetaObject is removed. |
void metaObjectAdded(MetaObjectChangeEvent moce)
MetaObject is added. It is not guaranteed that the call is made on the EDT. Callers
should obey the semantics of an added-call: This means that the given event object should contain the source
object and the new object.moce - the event object related to the addvoid metaObjectChanged(MetaObjectChangeEvent moce)
MetaObject is changed. It is not guaranteed that the call is made on the EDT.
Callers should obey the semantics of a changed-call: This means that the given event object should contain the
source object and the old and the new object.moce - the event object related to the changevoid metaObjectRemoved(MetaObjectChangeEvent moce)
MetaObject is removed. It is not guaranteed that the call is made on the EDT.
Callers should obey the semantics of a removed-call: This means that the given event object should contain the
source object and the old object.moce - the event object related to the changeCopyright © 2012–2026 cismet GmbH. All rights reserved.