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

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


    public final void removeWindowSectionListener(WindowSectionListener lst) {
        sectionListeners.remove(lst);
    }
   
    protected final void fireEnureVisibleRequested() {
        sectionListeners.call().ensureVisibleRequested(new WindowSectionEvent(this));
    }
View Full Code Here


    protected final void fireEnureVisibleRequested() {
        sectionListeners.call().ensureVisibleRequested(new WindowSectionEvent(this));
    }

    protected final void fireContentAdded(WindowSectionContent added) {
        sectionListeners.call().contentAdded(new WindowSectionEvent(this, added));
    }
View Full Code Here

    protected final void fireContentAdded(WindowSectionContent added) {
        sectionListeners.call().contentAdded(new WindowSectionEvent(this, added));
    }

    protected final void fireContentRemoved(WindowSectionContent removed) {
        sectionListeners.call().contentRemoved(new WindowSectionEvent(this, removed));
    }
View Full Code Here

     * @param active
     *            the <tt>WindowSectionContent</tt> that became active, or <tt>null</tt> if no
     *            content is active.
     */
    protected final void fireActiveContentChanged(WindowSectionContent active) {
        sectionListeners.call().activeContentChanged(new WindowSectionEvent(this, active));
    }
View Full Code Here

TOP

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

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.