create

Mon 01 January 2018

Syntax

create PKG_NAME[:SubpackageName[:SubpackageName]]{:ClassName([paramlist])

Description

Use the create function to instantiate an object of the specified application class.

Because the object’s constructor method is automatically invoked by the create function, any parameters needed by the constructor method must be included in the invocation of create.

Parameters

Field or Control

Definition

PKG_NAME

Specify the name of the package that contains the class.

: SubpackageName [: SubpackageName ]

Specify the subpackage path to the class.

ClassName

Specify the class that defines the object to be instantiated.

paramlist

Specify the parameters required by the object’s constructor method.

Returns

An object of the specified application class.