*
* <pre>
* {@code
- * filename = application.fileOpenBox("/path/to/file.ext",
+ * filename = fileOpenBox("/path/to/file.ext",
* TFileOpenBox.Type.OPEN);
* if (filename != null) {
* ... the user selected a file, go open it ...
*
* <pre>
* {@code
- * box = application.inputBox(title, caption);
+ * box = inputBox(title, caption);
* if (box.getText().equals("yes")) {
* ... the user entered "yes", do stuff ...
* }
*
* <pre>
* {@code
- * box = application.messageBox(title, caption,
+ * box = messageBox(title, caption,
* TMessageBox.Type.OK | TMessageBox.Type.CANCEL);
*
* if (box.getResult() == TMessageBox.OK) {