Package org.jboss.errai.cdi.client.api

Examples of org.jboss.errai.cdi.client.api.Event


@Provider
@ApplicationScoped
public class EventProvider implements ContextualTypeProvider<Event<?>> {

    public Event<?> provide(final Class[] typeargs) {
        return new Event() {
            private Class eventType = (typeargs.length == 1 ? typeargs[0] : Object.class);

            public void fire(Object event) {
                if (event == null) return;
View Full Code Here

TOP

Related Classes of org.jboss.errai.cdi.client.api.Event

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.