Oracle Fusion Middleware extensions for Applications Core API Reference
11g Release 1 (11.1.1.6)

E22562-03

oracle.apps.fnd.applcore.flex.runtime.event
Interface ModelerListener

All Superinterfaces:
java.util.EventListener
All Known Subinterfaces:
BCModelerListener
All Known Implementing Classes:
BCModelerAdapter, ServiceEnabler, SimpleProgressMonitor

public interface ModelerListener
extends java.util.EventListener

An interface for objects to listen to the events occurred in a modeler. The implementation must always have a default constructor.


Method Summary
 void listenerExceptionThrown(java.lang.RuntimeException ex)
          Invoked when the listener throws a runtime exception while any of the listener methods (except this one) is invoked by the source.
 void modelerActionPerformed(ModelerEvent e)
          Invoked after a modeler action has been performed.
 void modelerFinished(ModelerEvent e)
          Invoked after the modeler has finished building the model.
 void modelerInterrupted(ModelerEvent e, java.lang.Throwable cause)
          Invoked after the modeler has been interruped, mostly likely due to an error.
 void modelerStarting(ModelerEvent e)
          Invoked when the modeler is about start building the model.
 

Method Detail

modelerStarting

void modelerStarting(ModelerEvent e)
Invoked when the modeler is about start building the model.

Parameters:
e - the modeler event.

modelerInterrupted

void modelerInterrupted(ModelerEvent e,
                        java.lang.Throwable cause)
Invoked after the modeler has been interruped, mostly likely due to an error.

Parameters:
e - the modeler event
cause - the reason why the modeler has been interrupted; null if the cause is unknown

modelerFinished

void modelerFinished(ModelerEvent e)
Invoked after the modeler has finished building the model.

Parameters:
e - the modeler event

modelerActionPerformed

void modelerActionPerformed(ModelerEvent e)
Invoked after a modeler action has been performed.

Parameters:
e - the modeler event

listenerExceptionThrown

void listenerExceptionThrown(java.lang.RuntimeException ex)
Invoked when the listener throws a runtime exception while any of the listener methods (except this one) is invoked by the source.

Parameters:
ex - the runtime exception

Oracle Fusion Middleware extensions for Applications Core API Reference
11g Release 1 (11.1.1.6)

E22562-03

Copyright © 2012 Oracle. All Rights Reserved.