Actually I'm using the mvp4g framework.

Le mercredi 14 octobre 2015 12:10:15 UTC+2, Thomas Broyer a écrit :
>
> What kind of framework/library is this using? Where do those @Event, 
> @Events, and @Start come from? (you may have better chances in the forum 
> for this framework/library)
>
> On Wednesday, October 14, 2015 at 11:22:28 AM UTC+2, NewbieGwtUser wrote:
>>
>> Hi !
>>
>> I have in my project a RootView and a HomeView, this latter will be 
>> displayed inside the main Container of the RootView but only with clicking 
>> on the HomeButton.
>> Now I want to get the HomeView displayed inside the RootView at the first 
>> browser loading.
>>
>> I tried to add in my MainEventBus interface to make:
>>
>> @Events(startPresenter=RootPresenter.class)
>> public interface MainEventBus extends EventBus{
>> @Start
>> @Event(handlers = { RootPresenter.class })
>> public void start(); 
>> @Event(handlers = {HomePresenter.class, RootPresenter.class})
>> public void goToHome();
>> @Event(handlers = {RootPresenter.class})
>> public void changeRootBody(Widget w);
>> @Event(handlers={RootPresenter.class})
>> public void goToRoot();
>> }
>>
>>
>> and in my RootPresenter:
>>
>> public void onStart(){
>> onGoToRoot();
>> onGoToMosaique();
>> }
>>
>> but without success, any idea will be appreciated
>>
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to