create
Mon 01 January 2018Syntax
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.