Right now, the IWDWindow API does not provide a way of setting window titles.
I can solve this problem right now by casting the IWDWindow object into a Window object and calling setTitle on it.
( (Window) newWin ).setTitle( "My Title");
Why is setTitle() not a part of the IWDWindow API?