BBjAppConfig::getBBjApplicationName

Description

In BBj 12.0 and higher, this method returns the application name, which corresponds to the BBj -a parameter.

Syntax

Return Value

Method

String

getBBjApplicationName()

Parameters

None.

Return Values

Returns the application name.

Remarks

This parameter sets the initial browser title. In a running BUI application, the browser title always reflects the active top level BBjWindow.

Example

rem ' BBjAppConfig::getBBjApplicationName

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
appConfig!.setBBjApplicationName("BUI Sample")
print "getBBjApplicationName: ",
print appConfig!.getBBjApplicationName()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::setBBjApplicationName

BBjAppServer

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.