Package com.cedarsolutions.client.gwt.event

Examples of com.cedarsolutions.client.gwt.event.UnifiedEvent


    /** Handle a click event. */
    @Override
    public void onClick(ClickEvent event) {
        if (this.getViewEventHandler() != null) {
            UnifiedEvent click = new UnifiedEvent(event);
            this.getViewEventHandler().handleEvent(click);
        }
    }
View Full Code Here


    /** Handle a column sort event. */
    @Override
    public void onColumnSort(ColumnSortEvent event) {
        if (this.getViewEventHandler() != null) {
            UnifiedEvent sort = new UnifiedEvent(UnifiedEventType.SORT_EVENT);
            this.getViewEventHandler().handleEvent(sort);
        }
    }
View Full Code Here

TOP

Related Classes of com.cedarsolutions.client.gwt.event.UnifiedEvent

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.