Google indexed and using vaadin

I have got question .

I am newbie vaadin user and i just start write application in this framework. So i have got question . Before i started write application in vaadin i write application using jsp and javascript framework Extjs . So if we write page using Extjs we must write the same page using pure html . Because google can not indexed extjs page.
So when i using vaaden i can not write pure html web . So google have not got problem with indexed vaadin application ??

Unfortunately Google won’t crawl Vaadin applications for the same reasons as with Extjs or any other library that renders the user interface using AJAX and Javascript. With Vaadin, only the Javascript required to initialize the rendering is included in the HTML page, everything else is fetched from the server using AJAX and rendered using GWT and Javascript.

I you want your Vaadin application to be crawlable by Google, you would still have to generate separate HTML content for that purpose. I guess this initiative could also be usefull:
http://code.google.com/web/ajaxcrawling/

More info in
this forum post
and
this example
.

As well as the article
How can I make my application indexed by search engines?
in Knowledge Base (Pro Account required).