All Packages Class Hierarchy This Package Previous Next Index
VisualObject
.
To be notified of changes, a plug-in implements this interface then calls
VisualObject.addVisualObjectListener
to place itself on the notification
list. When the VisualObject
changes, the appropriate method of this interface
is called.
If you are only interested in a subset of the notification methods, you can extend the
VisualObjectAdapter
class rather than implement all the methods yourself.
VisualObject
.
VisualObject
.
VisualObject
is changed.
VisualObject
is added to the repository.
VisualObject
is removed from the repository.
VisualObject
is removed from the repository
VisualObject
VisualObject
is changed.
public abstract void childAdded(VisualObject visualObject, VisualObject childVisualObject)
VisualObject
.
VisualObject
which had the change.
VisualObject
that was added.
public abstract void childDeleted(VisualObject visualObject, VisualObject childVisualObject)
VisualObject
.
VisualObject
which had the change.
VisualObject
that was removed.
public abstract void descriptionChanged(VisualObject visualObject)
VisualObject
is changed.
VisualObject
whose description has been changed.
public abstract void objectAdded(VisualObject visualObject)
VisualObject
is added to the repository.
VisualObject
that was added.
public abstract void objectDeleted(VisualObject visualObject)
VisualObject
is removed from the repository.
(The object is still valid.)
VisualObject
that has been deleted.
public abstract void objectRemoved(VisualObject visualObject)
VisualObject
is removed from the repository
VisualObject
that was removed.
public abstract void objectReplaced(VisualObject visualObject, VisualObject replacedVisualObject)
VisualObject
which had the change.
VisualObject
that was replaced.
public abstract void propertyAddedDeleted(VisualObject visualObject)
VisualObject
VisualObject
which had the change.
public abstract void propertyChanged(VisualObject visualObject, short index)
VisualObject
is changed.
VisualObject
which had the change.
All Packages Class Hierarchy This Package Previous Next Index