Programs
Program Java files
Each Program consists of a set of Java files. These are:
Optional files:
<Program_java>.java
This is the executable code of the program.
<Program_java>Base.java
This file will contain the class definition of the program. Each program is defined as a separate class. The constructor of the class is also in this file.
LocalDefinitions.java
In this java file all the local program variables are declared.
PrintDefinitions.java
This java file Contains information for printers.
Fd_<filename>.java
These files contain the file definition of every file used in the program. Each file has their own file definition file.