I am successfully opening new browser windows with BrowserWindowOpener.
Question: How do I pass some information to the newly instantiated UI subclass?
The syntax requires that I specify a class to be instantiated. How do I communicate with that future instance?
BrowserWindowOpener bookOpener = new BrowserWindowOpener( BookUI.class );
For example, let's say my app opens a window listing word definitions for words starting with a particular letter of the alphabet (A-Z). How do I tell the newly opening UI that it should show the "A" words, the "B" words, or the "V" words?
I noticed the BrowserWindowOpenerState class, but its use is not documented.