text stringlengths 0 234 |
|---|
exception |
when Storage_Error => raise List_Storage_Error ; |
Function Definition: procedure Register_M1_End_Class (M1_Instance: in Ada.Tags.Tag) is |
Function Body: begin |
M1_Side := M1_Instance; |
M1_Single_M2_Multiple.Register_Single_End_Class (M1_Instance); |
M2_Single_M1_Multiple.Register_Multiple_End_Class (M1_Instance); |
end Register_M1_End_Class; |
--------------------------------------------------------------------- |
function Report_M1_End_Class return Ada.Tags.Tag is |
begin |
return M1_Side; |
end Report_M1_End_Class; |
----------------------------------------------------------------------- |
procedure Register_M2_End_Class (M2_Instance: in Ada.Tags.Tag) is |
begin |
M2_Side := M2_Instance; |
M1_Single_M2_Multiple.Register_Multiple_End_Class (M2_Instance); |
M2_Single_M1_Multiple.Register_Single_End_Class (M2_Instance); |
end Register_M2_End_Class; |
--------------------------------------------------------------------- |
function Report_M2_End_Class return Ada.Tags.Tag is |
begin |
return M2_Side; |
end Report_M2_End_Class; |
----------------------------------------------------------------------- |
procedure Register_Associative_End_Class (Associative_Instance: in Ada.Tags.Tag) is |
begin |
Associative_Side := Associative_Instance; |
M1_Single_M2_Multiple.Register_Associative_End_Class (Associative_Instance); |
M2_Single_M1_Multiple.Register_Associative_End_Class (Associative_Instance); |
end Register_Associative_End_Class; |
--------------------------------------------------------------------- |
function Report_Associative_End_Class return Ada.Tags.Tag is |
begin |
return Associative_Side; |
end Report_Associative_End_Class; |
--------------------------------------------------------------------- |
procedure Link ( |
A_Instance : in Root_Object.Object_Access; |
B_Instance : in Root_Object.Object_Access; |
Using : in Root_Object.Object_Access) is |
begin |
M1_Single_M2_Multiple.Link ( |
A_Instance => A_Instance, |
B_Instance => B_Instance, |
Using => Using); |
M2_Single_M1_Multiple.Link ( |
A_Instance => A_Instance, |
B_Instance => B_Instance, |
Using => Using); |
end Link; |
----------------------------------------------------------------------- |
procedure Unassociate ( |
A_Instance : in Root_Object.Object_Access; |
B_Instance : in Root_Object.Object_Access; |
From : in Root_Object.Object_Access) is |
begin |
M1_Single_M2_Multiple.Unassociate ( |
A_Instance => A_Instance, |
B_Instance => B_Instance, |
From => From); |
M2_Single_M1_Multiple.Unassociate ( |
A_Instance => B_Instance, |
B_Instance => A_Instance, |
From => From); |
end Unassociate; |
----------------------------------------------------------------------- |
procedure Unlink ( |
A_Instance : in Root_Object.Object_Access; |
B_Instance : in Root_Object.Object_Access) is |
begin |
M1_Single_M2_Multiple.Unlink ( |
A_Instance => A_Instance, |
B_Instance => B_Instance); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.