Viewing the Migrated Attributes of a Class

Navigable associations migrate attributes to classes during code generation. You can display these migrated attributes in the Associations tab of a class property sheet.

In the following example, the class Employee is associated with the class Company.



If you preview the generated code of the class Employee, you can see the following three attributes (in Java language):

public class EMPLOYEE
{
 public COMPANY hires[];
 public int NAME;
 public int DEPARTMENT;
}

The association between Employee and Company is migrated as the attribute public COMPANY hires [].

You can use the Associations tab of a class property sheet to display the list of all migrated attributes proceeding from navigable associations.