Sets the open state. @param newValue the new value
(final boolean newValue)
| 80 | * @param newValue the new value |
| 81 | */ |
| 82 | public void setOpen(final boolean newValue) { |
| 83 | if (newValue) { |
| 84 | setAttribute("open", ""); |
| 85 | } |
| 86 | else { |
| 87 | removeAttribute("open"); |
| 88 | modal_ = false; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Displays the dialog modelessly. |
no test coverage detected