Chapter 25. Code Engineering

  1. Home
  2. Docs
  3. Chapter 25. Code Engineering
  4. 2. Instant Generator
  5. How to generate Ada95 from UML

How to generate Ada95 from UML

Download PDF

Instant Generator is the process of producing source code from UML class model. Designers or software architects can build a high level domain class model, then pass to programmer to perform more lower-level system or application modeling and eventually generate source code from implementation model. This chain makes building software faster and cheaper. In this chapter, we will go through the instant generation of Ada95. To generate code by instant generator:

  1. Select Tools > Code > Instant Generator from the toolbar.
  2. In the Instant Generator window, select Ada95 as the Language.
  3. Fill in the Output Path, which is the directory where you want the code to generate to.
  4. Select the classes to generate code. In the Diagrams tab, you can select the diagrams to generate code for classes in the selected diagrams. Alternatively, open the Model Elements tab and select the classes to generate code.
    Selecting classes to generate code
  5. Optionally configure the generator options. Read the section below for a description of options.
  6. Click Generate to generate code.

Overview of Instant Generator

Overview of Instant Generator window

No. Name Description
1 Language The programming language to generate.
2 Model element tree A list of packages and classes that can be selected for code generation. You must select classes for code generation.
3 General options Some of the common configurable options are shown here. You can configure them in advanced options.
4 Output path The folder where you want the code files to be generated.
5 Template directory Template governs how code will be generated from model to code. You can customize the template to suit your needs, such as to print company specific headers to each code file. If you want to use your own template, provide the template directory here. If you want to keep using the build in template, leave this option unchanged to let Visual Paradigm generate with build in template. To learn more about customization, read the final chapter of this part.
6 Advanced options Click this button to configure any options related to code generation in a new window.
7 Prompt to confirm overwrite file If a code file instant generator going to generate is already exist, by checking this option you will be asked whether to overwrite that file or not. If you uncheck this option, it will help you to overwrite the existing file automatically.
8 Output pane Any warning, error or progress about generation will be printed here.
9 Open output folder Open the output path with system browser.
10 Preview Click to preview the code content. It is just a preview and code will not be generated to the output path by previewing.
11 Generate Click to start generation.
12 Close Click to close the instant generator.

Generator options

On the Instant Generator window you can configure some of the common code options at the right of window. You can also configure the advanced options for more detailed settings by clicking the Advanced Options… button.
Advanced Options window
Below is a description of available options.

Option Description
Encoding The encoding of source file.
Attribute prefix The text to append to attribute name as prefix.
Parameter prefix The text to append to parameter name as prefix.
This Parameter Name The name of the pointer which for accessing object itself.
Default attribute type Attribute type that will be used when attribute has no type specified.
Default parameter type Parameter type that will be used when parameter has no type specified.
Allow from linked project Check to generate also classes in referenced project.
Pointer type name The name of the pointer for accessing object’s associated class.
Internal type name suffix The name of the type which is generated for internal use.
Private component name The name of the type which is used for containing the private member.