USE Verb
Syntax
USE java.<class>.<name>
USE ::<filename>::<bbjclassname>
Description
The USE verb enables a BBj program to reference a BBj Custom Object class defined in another program file or to reference a Java class without having to specify the full package name of the class for each reference.
Parameter |
Description |
---|---|
java.class.name |
The complete name of a Java class, including the full package name (e.g. java.util.HashMap). |
filename |
The path to a file that contains the BBj Custom Object class definition. BBj locates this file using its normal file resolution procedures, checking the current working directory and prefix. |
bbjclassname |
The name of a BBj Custom Object class defined in the specified file. |
Notes
The USE verb must be the only statement on the line (with one exception:
it can end with a ; REM
comment).
For information on specifying a USE directive in a configuration file, see the USE section of The config.bbx Configuration File - BBj.
Examples
The following example consists of two separate files: use.bbj, which demonstrates USE statements and is runnable as a BBj program, and payroll.bbj, which contains custom classes that are used by use.bbj.
|
|