Package com.sun.data.provider

Examples of com.sun.data.provider.TransactionalDataListener


     *  <p> Fire a <code>changesCommitted</code> method to all registered
     *      listeners.</p>
     */
    protected void fireChangesCommitted() {
// FIXME: This method overrides a method by the same name in the superclass that is private!  The super() should make this protected.
        TransactionalDataListener listeners[] = getTransactionalDataListeners();
        for (int i = 0; i < listeners.length; i++) {
            listeners[i].changesCommitted(this);
        }
    }
View Full Code Here


     *  <p> Fire a <code>changesReverted</code> method to all registered
     *      listeners.</p>
     */
    private void fireChangesReverted() {
// FIXME: This method overrides a method by the same name in the superclass that is private!  The super() should make this protected.
        TransactionalDataListener listeners[] = getTransactionalDataListeners();
        for (int i = 0; i < listeners.length; i++) {
            listeners[i].changesReverted(this);
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.data.provider.TransactionalDataListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.