Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.1.0)

E17483-02

oracle.adf.model.binding
Interface DCTransactionStateListener

All Known Subinterfaces:
JUTransactionStateListener
All Known Implementing Classes:
JUNavigationBar, JUStatusBar

public interface DCTransactionStateListener

Implemented by controls/classes that need to react to a change in a transaction's state. Typically, controls like status bar and navigation bar need to update their display with a dirty flag/button that indicates whether the ensuing transaction is clean or not. Those classes can implement this interface and add themselves to the DCApplication's transaction state listener's list so that they get notified of the change.

See Also:
JUNavigationBar, JUApplication

Method Summary
 void release()
          Framework calls this method when it needs to indicate that the connection to is being released.
 void transactionStateChanged(boolean state)
          Invoked when the transaction is either marked dirty or clean.
 

Method Detail

transactionStateChanged

void transactionStateChanged(boolean state)
Invoked when the transaction is either marked dirty or clean.

Parameters:
state - Indicates if the transaction was marked clean (true) or dirty (false). Controls like NavigationBar then disables/enables the Save button to indicate there are changes that need to be saved/committed to the database.

release

void release()
Framework calls this method when it needs to indicate that the connection to is being released.


Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.1.0)

E17483-02

Copyright © 1997, 2011, Oracle. All rights reserved.