Package org.jitterbit.application.ui.window.event

Examples of org.jitterbit.application.ui.window.event.WindowElementStateEvent


    public String toString() {
        return getClass().getSimpleName() + " - ID = " + getId();
    }

    private void fireStateChanged(EnumSet<WindowElementState> oldState, EnumSet<WindowElementState> newState) {
        WindowElementStateEvent evt = new WindowElementStateEvent(this, oldState, newState);
        stateListeners.call().stateChanged(evt);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.window.event.WindowElementStateEvent

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.