Package | Description |
---|---|
org.netbeans.api.visual.model |
This package contains
ObjectScene class which is a scene with ability to register model-objects with widgets on the scene. |
Modifier and Type | Method and Description |
---|---|
void |
ObjectSceneListener.focusChanged(ObjectSceneEvent event,
Object previousFocusedObject,
Object newFocusedObject)
Called to notify that the object-focus is changed.
|
void |
ObjectSceneListener.highlightingChanged(ObjectSceneEvent event,
Set<Object> previousHighlighting,
Set<Object> newHighlighting)
Called to notify that the object-highlighting is changed.
|
void |
ObjectSceneListener.hoverChanged(ObjectSceneEvent event,
Object previousHoveredObject,
Object newHoveredObject)
Called to notify that the object-hovering is changed.
|
void |
ObjectSceneListener.objectAdded(ObjectSceneEvent event,
Object addedObject)
Called to notify that an object was added to an object scene.
|
void |
ObjectSceneListener.objectRemoved(ObjectSceneEvent event,
Object removedObject)
Called to notify that an object was removed from an object scene.
|
void |
ObjectSceneListener.objectStateChanged(ObjectSceneEvent event,
Object changedObject,
ObjectState previousState,
ObjectState newState)
Called to notify that the object state of an object is changed.
|
void |
ObjectSceneListener.selectionChanged(ObjectSceneEvent event,
Set<Object> previousSelection,
Set<Object> newSelection)
Called to notify that the object-selection is changed.
|