Examples of CUIBaseEvent


Examples of wecui.event.cui.CUIBaseEvent

        if (eventType == null || eventType.getEventClass() == null) {
            event.markInvalid("Unknown CUIEvent identifier.");
        }

        try {
            CUIBaseEvent newEvent = Reflect.on(eventType.getEventClass()).create(this.controller, event.getParams()).get();

            //Run the event. If doRun returns null, the event was successful.
            //If it returns a string, it uses that as the error message.
            String result = newEvent.doRun();
            if (result != null) {
                event.markInvalid(result);
            } else {
                event.setHandled(true);
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.