Examples of linkWaveBean()


Examples of org.jrebirth.af.core.wave.Wave.linkWaveBean()

                        final Wave subCommandWave = WaveBuilder.create()
                                .waveGroup(WaveGroup.CALL_COMMAND)
                                .relatedClass(this.commandList.get(this.commandRunIndex))
                                .build();

                        subCommandWave.linkWaveBean(wave.getWaveBean());
                        subCommandWave.addWaveListener(this);
                        sendWave(subCommandWave);
                    }
                }
View Full Code Here

Examples of org.jrebirth.af.core.wave.Wave.linkWaveBean()

        wave.setWaveGroup(waveGroup);
        wave.setWaveType(waveType);
        wave.setFromClass(this.getClass());
        wave.setRelatedClass(relatedClass);

        wave.linkWaveBean(waveBean);

        // Track wave creation
        getLocalFacade().getGlobalFacade().trackEvent(JRebirthEventType.CREATE_WAVE, this.getClass(), wave.getClass());

        return wave;
View Full Code Here

Examples of org.jrebirth.af.core.wave.WaveBase.linkWaveBean()

        wave.setWaveGroup(waveGroup);
        wave.setWaveType(waveType);
        wave.setFromClass(this.getClass());
        wave.setRelatedClass(relatedClass);

        wave.linkWaveBean(waveBean);

        // Track wave creation
        getLocalFacade().getGlobalFacade().trackEvent(JRebirthEventType.CREATE_WAVE, this.getClass(), wave.getClass());

        return wave;
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.