MCPcopy Create free account
hub / github.com/bobbylight/RText / setTitle

Method setTitle

src/main/java/org/fife/rtext/RText.java:1364–1373  ·  view source on GitHub ↗

Sets the title of the application window. This title is prefixed with the application name. @param title The new title. @see #getTitle()

(String title)

Source from the content-addressed store, hash-verified

1362 * @see #getTitle()
1363 */
1364 @Override
1365 public void setTitle(String title) {
1366 if (getShowHostName()) {
1367 title = "rtext (" + getHostName() + ") - " + title;
1368 }
1369 else {
1370 title = "rtext - " + title;
1371 }
1372 super.setTitle(title);
1373 }
1374
1375
1376 /**

Callers 15

propertyChangeMethod · 0.95
setMessagesMethod · 0.95
setShowHostNameMethod · 0.95
AboutDialogMethod · 0.80
CreditsDialogMethod · 0.80
LicenseDialogMethod · 0.80
displayExceptionMethod · 0.80
setModeMethod · 0.80
createGUIMethod · 0.80
ArgDialogMethod · 0.80
EnvVarDialogMethod · 0.80

Calls 2

getShowHostNameMethod · 0.95
getHostNameMethod · 0.95

Tested by

no test coverage detected