Opens a new single-column text window. @param title the title of the window @param text the text initially displayed in the window @param width the width of the window in pixels @param height the height of the window in pixels
(String title, String text, int width, int height)
| 72 | * @param height the height of the window in pixels |
| 73 | */ |
| 74 | public TextWindow(String title, String text, int width, int height) { |
| 75 | this(title, "", text, width, height); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Opens a new multi-column text window. |
nothing calls this directly
no test coverage detected