Open a new window with the specified name. If the URL is non-null then attempt to load a page from that location and put it in the new window. @param url the URL to load content from or null if no content is to be loaded @param windowName the name of the new window @return the new window
(final URL url, final String windowName)
| 1080 | * @return the new window |
| 1081 | */ |
| 1082 | public WebWindow openWindow(final URL url, final String windowName) { |
| 1083 | WebAssert.notNull("windowName", windowName); |
| 1084 | return openWindow(url, windowName, getCurrentWindow()); |
| 1085 | } |
| 1086 | |
| 1087 | /** |
| 1088 | * Open a new window with the specified name. If the URL is non-null then attempt to load |