public class DeletionEvent extends PageEditorEvent
ComponentDeletionEvent is a notification that a component is
deleted using Oracle Composer.
The deleted component is parameter of ComponentDeletionEvent.
| Modifier and Type | Field and Description |
|---|---|
static oracle.adf.share.logging.ADFLogger |
_LOG |
| Constructor and Description |
|---|
DeletionEvent(javax.faces.component.UIComponent comp) |
| Modifier and Type | Method and Description |
|---|---|
javax.faces.component.UIComponent |
getComponent()
Returns the component that was deleted.
|
Event |
getEventType()
Returns the type of this event.
|
void |
processListener(PageEditorListener listener)
Broadcast this
DeletionEvent to the specified
PageEditorListener, by whatever mechanism is appropriate. |
isEventHandled, setEventHandledpublic javax.faces.component.UIComponent getComponent()
public final Event getEventType()
getEventType in class PageEditorEventEvent.COMP_DELETE_EVENT.public void processListener(PageEditorListener listener) throws javax.faces.event.AbortProcessingException
DeletionEvent to the specified
PageEditorListener, by whatever mechanism is appropriate.
This is accomplished by calling processDeletion
method on DeletionListener, and passing this
DeletionEvent as a paramter.processListener in class PageEditorEventlistener - PageEditorListener to send this
DeletionEvent to.javax.faces.event.AbortProcessingException - Signal Oracle Composer that no further
processing on the current event should be performed.