BBjStackElement::getClassName

Description

In BBj 9.0 and higher, this method returns the className of the CustomObject at the stack level that the BBjStackElement represents.

Syntax

Return Value

Method

string

getClassName()

Parameters

None.

Return Value

Returns the className of the CustomObject at this call level.

Remarks

If the specified call level is a method of a CustomObject getClassName will return the name of the CustomObject,otherwise it will return null().

Example

vector! = BBjAPI().getRuntime().getBBjStack()
element! = vector!.get(0)
print element!.getClassName()

See Also

BBjAPI

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