BBjObjectTable

Description

The BBjObjectTable provides access to a map of key value pairs that is accessible at all program levels.

Creation

BBjAPI > BBjObjectTable  

BBjObjectTable may be obtained through the following BBjAPI object method:

Return Value

Method

BBjObjectTable

getObjectTable()

Methods of BBjObjectTable

Return Value

Method

void

clear()

object

get(Object key!)

BBjVector

getKeys()

void

put(Object key!, Object value!)

void

remove(Object key!)

int

size()

Remarks

BBjObjectTable is similar to STBL, but the keys and values are not restricted to strings.

There is only one instance of a BBjObjectTable.

Constants

None.

Example

rem 'Obtain the instance of the BBjObjectTable

rem 'Obtain the instance of the BBjAPI object
let myAPI! = BBjAPI()

rem 'Obtain the instance of the BBjObjectTable object
let myObjectTable! = myAPI!.getObjectTable()

See Also

BBjAPI

BBj Object Variables

BBj Object Assignment

BBj Object Error Handling

BBj Object Operators

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