/* * Copyright (C) 2016 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jboss.errai.cdi.event.client; import java.util.ArrayList; import java.util.List; import javax.enterprise.context.Dependent; import javax.enterprise.event.Event; import javax.enterprise.event.Observes; import javax.inject.Inject; @Dependent public class PrimitiveEventTestModule { public List<Object> observed = new ArrayList<>(); @Inject public Event<Double> doubleEvent; @Inject public Event<Float> floatEvent; @Inject public Event<Integer> intEvent; @Inject public Event<Long> longEvent; @Inject public Event<Short> shortEvent; @Inject public Event<Byte> byteEvent; @Inject public Event<Character> charEvent; @Inject public Event<Boolean> boolEvent; public void observeDouble(@Observes final double event) { observed.add(event); } public void observeFloat(@Observes final float event) { observed.add(event); } public void observeInt(@Observes final int event) { observed.add(event); } public void observeLong(@Observes final long event) { observed.add(event); } public void observeShort(@Observes final short event) { observed.add(event); } public void observeByte(@Observes final byte event) { observed.add(event); } public void observeChar(@Observes final char event) { observed.add(event); } public void observeBool(@Observes final boolean event) { observed.add(event); } }