This image shows a COBOL class definition and the commands that you use to compile and link the class. This text conveys all the information contained in the image.
The following is the COBOL class definition:
Identification division.
Class-id Manager inherits Employee.
Environment division.
Configuration section.
Repository.
Class Manager is “Manager”
. . .
End class Manager.
The following are the steps for compiling and linking this class definition:
cob2 -c -qthread Manager.cbl
This command produces the Java class definition Manager.java and the object file Manager.obj.
javac Manager.java
This command produces the executable component Manager.class.
cob2 -dll Manager.obj
This command produces the executable DLL module Manager.dll.
End of image description.