He's trying to show you how to change the UI when everything is ready to be
showed. Simplifying, something like that

RootPanel.get().add(new LoadingPanel()); /* Displays a panel that shows a
"Loading..." message  */

// do all the stuff for loading the images, create the panels you want to
show and so
// when everything is loaded call update() method

public void update(Panel apanel){
 RootPanel.get().clear();
 RootPanel.get().add(apanel); // adds your already initialized panel :)
}

2010/3/24 mariyan nenchev <[email protected]>

> I'm not sure what you are trying to do :(.
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-web-toolkit%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to