/**
  * Creates a window and associates it with the client.
  *
  * @param webClient the web client that "owns" this window
  */
 public WebWindowImpl(final WebClient webClient) {
   WebAssert.notNull("webClient", webClient);
   webClient_ = webClient;
   performRegistration();
 }