BBjAPI::isClientObject

Description

In BBj 18.0 and higher, this method returns an indication of whether a specified object is a client object.

Syntax

Return Value Method
boolean isClientObject(object! obj)

Parameters

Variable

Description

obj

Any object variable.

Return Value

Returns whether obj is a client object (1=True, 0=False).

Example

server! = new java.util.Date()
client! = new java.util.Date@()
print server!," isClientObject? ",bbjapi().isClientObject(server!)
print client!," isClientObject? ",bbjapi().isClientObject(client!)

See Also

BBjAPI

Object Variables

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