1------------------------------------------------------------------------------
2--                                                                          --
3--                            Matreshka Project                             --
4--                                                                          --
5--                          Ada Modeling Framework                          --
6--                                                                          --
7--                        Runtime Library Component                         --
8--                                                                          --
9------------------------------------------------------------------------------
10--                                                                          --
11-- Copyright © 2012-2013, Vadim Godunko <vgodunko@gmail.com>                --
12-- All rights reserved.                                                     --
13--                                                                          --
14-- Redistribution and use in source and binary forms, with or without       --
15-- modification, are permitted provided that the following conditions       --
16-- are met:                                                                 --
17--                                                                          --
18--  * Redistributions of source code must retain the above copyright        --
19--    notice, this list of conditions and the following disclaimer.         --
20--                                                                          --
21--  * Redistributions in binary form must reproduce the above copyright     --
22--    notice, this list of conditions and the following disclaimer in the   --
23--    documentation and/or other materials provided with the distribution.  --
24--                                                                          --
25--  * Neither the name of the Vadim Godunko, IE nor the names of its        --
26--    contributors may be used to endorse or promote products derived from  --
27--    this software without specific prior written permission.              --
28--                                                                          --
29-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS      --
30-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT        --
31-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR    --
32-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT     --
33-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,   --
34-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
35-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR   --
36-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF   --
37-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     --
38-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS       --
39-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.             --
40--                                                                          --
41------------------------------------------------------------------------------
42--  $Revision: 3646 $ $Date: 2013-01-07 22:05:34 +0400 (Mon, 07 Jan 2013) $
43------------------------------------------------------------------------------
44--  This file is generated, don't edit it.
45------------------------------------------------------------------------------
46with AMF.OCL.Any_Types;
47with AMF.OCL.Association_Class_Call_Exps;
48with AMF.OCL.Bag_Types;
49with AMF.OCL.Boolean_Literal_Exps;
50with AMF.OCL.Collection_Items;
51with AMF.OCL.Collection_Literal_Exps;
52with AMF.OCL.Collection_Ranges;
53with AMF.OCL.Collection_Types;
54with AMF.OCL.Enum_Literal_Exps;
55with AMF.OCL.Expression_In_Ocls;
56with AMF.OCL.If_Exps;
57with AMF.OCL.Integer_Literal_Exps;
58with AMF.OCL.Invalid_Literal_Exps;
59with AMF.OCL.Invalid_Types;
60with AMF.OCL.Iterate_Exps;
61with AMF.OCL.Iterator_Exps;
62with AMF.OCL.Let_Exps;
63with AMF.OCL.Message_Exps;
64with AMF.OCL.Message_Types;
65with AMF.OCL.Null_Literal_Exps;
66with AMF.OCL.Operation_Call_Exps;
67with AMF.OCL.Ordered_Set_Types;
68with AMF.OCL.Property_Call_Exps;
69with AMF.OCL.Real_Literal_Exps;
70with AMF.OCL.Sequence_Types;
71with AMF.OCL.Set_Types;
72with AMF.OCL.State_Exps;
73with AMF.OCL.String_Literal_Exps;
74with AMF.OCL.Template_Parameter_Types;
75with AMF.OCL.Tuple_Literal_Exps;
76with AMF.OCL.Tuple_Literal_Parts;
77with AMF.OCL.Tuple_Types;
78with AMF.OCL.Type_Exps;
79with AMF.OCL.Unlimited_Natural_Literal_Exps;
80with AMF.OCL.Unspecified_Value_Exps;
81with AMF.OCL.Variable_Exps;
82with AMF.OCL.Variables;
83with AMF.OCL.Void_Types;
84
85package AMF.Factories.OCL_Factories is
86
87   pragma Preelaborate;
88
89   type OCL_Factory is limited interface
90     and AMF.Factories.Factory;
91
92   type OCL_Factory_Access is access all OCL_Factory'Class;
93   for OCL_Factory_Access'Storage_Size use 0;
94
95   not overriding function Create_Any_Type
96    (Self : not null access OCL_Factory)
97       return AMF.OCL.Any_Types.OCL_Any_Type_Access is abstract;
98
99   not overriding function Create_Association_Class_Call_Exp
100    (Self : not null access OCL_Factory)
101       return AMF.OCL.Association_Class_Call_Exps.OCL_Association_Class_Call_Exp_Access is abstract;
102
103   not overriding function Create_Bag_Type
104    (Self : not null access OCL_Factory)
105       return AMF.OCL.Bag_Types.OCL_Bag_Type_Access is abstract;
106
107   not overriding function Create_Boolean_Literal_Exp
108    (Self : not null access OCL_Factory)
109       return AMF.OCL.Boolean_Literal_Exps.OCL_Boolean_Literal_Exp_Access is abstract;
110
111   not overriding function Create_Collection_Item
112    (Self : not null access OCL_Factory)
113       return AMF.OCL.Collection_Items.OCL_Collection_Item_Access is abstract;
114
115   not overriding function Create_Collection_Literal_Exp
116    (Self : not null access OCL_Factory)
117       return AMF.OCL.Collection_Literal_Exps.OCL_Collection_Literal_Exp_Access is abstract;
118
119   not overriding function Create_Collection_Range
120    (Self : not null access OCL_Factory)
121       return AMF.OCL.Collection_Ranges.OCL_Collection_Range_Access is abstract;
122
123   not overriding function Create_Collection_Type
124    (Self : not null access OCL_Factory)
125       return AMF.OCL.Collection_Types.OCL_Collection_Type_Access is abstract;
126
127   not overriding function Create_Enum_Literal_Exp
128    (Self : not null access OCL_Factory)
129       return AMF.OCL.Enum_Literal_Exps.OCL_Enum_Literal_Exp_Access is abstract;
130
131   not overriding function Create_Expression_In_Ocl
132    (Self : not null access OCL_Factory)
133       return AMF.OCL.Expression_In_Ocls.OCL_Expression_In_Ocl_Access is abstract;
134
135   not overriding function Create_If_Exp
136    (Self : not null access OCL_Factory)
137       return AMF.OCL.If_Exps.OCL_If_Exp_Access is abstract;
138
139   not overriding function Create_Integer_Literal_Exp
140    (Self : not null access OCL_Factory)
141       return AMF.OCL.Integer_Literal_Exps.OCL_Integer_Literal_Exp_Access is abstract;
142
143   not overriding function Create_Invalid_Literal_Exp
144    (Self : not null access OCL_Factory)
145       return AMF.OCL.Invalid_Literal_Exps.OCL_Invalid_Literal_Exp_Access is abstract;
146
147   not overriding function Create_Invalid_Type
148    (Self : not null access OCL_Factory)
149       return AMF.OCL.Invalid_Types.OCL_Invalid_Type_Access is abstract;
150
151   not overriding function Create_Iterate_Exp
152    (Self : not null access OCL_Factory)
153       return AMF.OCL.Iterate_Exps.OCL_Iterate_Exp_Access is abstract;
154
155   not overriding function Create_Iterator_Exp
156    (Self : not null access OCL_Factory)
157       return AMF.OCL.Iterator_Exps.OCL_Iterator_Exp_Access is abstract;
158
159   not overriding function Create_Let_Exp
160    (Self : not null access OCL_Factory)
161       return AMF.OCL.Let_Exps.OCL_Let_Exp_Access is abstract;
162
163   not overriding function Create_Message_Exp
164    (Self : not null access OCL_Factory)
165       return AMF.OCL.Message_Exps.OCL_Message_Exp_Access is abstract;
166
167   not overriding function Create_Message_Type
168    (Self : not null access OCL_Factory)
169       return AMF.OCL.Message_Types.OCL_Message_Type_Access is abstract;
170
171   not overriding function Create_Null_Literal_Exp
172    (Self : not null access OCL_Factory)
173       return AMF.OCL.Null_Literal_Exps.OCL_Null_Literal_Exp_Access is abstract;
174
175   not overriding function Create_Operation_Call_Exp
176    (Self : not null access OCL_Factory)
177       return AMF.OCL.Operation_Call_Exps.OCL_Operation_Call_Exp_Access is abstract;
178
179   not overriding function Create_Ordered_Set_Type
180    (Self : not null access OCL_Factory)
181       return AMF.OCL.Ordered_Set_Types.OCL_Ordered_Set_Type_Access is abstract;
182
183   not overriding function Create_Property_Call_Exp
184    (Self : not null access OCL_Factory)
185       return AMF.OCL.Property_Call_Exps.OCL_Property_Call_Exp_Access is abstract;
186
187   not overriding function Create_Real_Literal_Exp
188    (Self : not null access OCL_Factory)
189       return AMF.OCL.Real_Literal_Exps.OCL_Real_Literal_Exp_Access is abstract;
190
191   not overriding function Create_Sequence_Type
192    (Self : not null access OCL_Factory)
193       return AMF.OCL.Sequence_Types.OCL_Sequence_Type_Access is abstract;
194
195   not overriding function Create_Set_Type
196    (Self : not null access OCL_Factory)
197       return AMF.OCL.Set_Types.OCL_Set_Type_Access is abstract;
198
199   not overriding function Create_State_Exp
200    (Self : not null access OCL_Factory)
201       return AMF.OCL.State_Exps.OCL_State_Exp_Access is abstract;
202
203   not overriding function Create_String_Literal_Exp
204    (Self : not null access OCL_Factory)
205       return AMF.OCL.String_Literal_Exps.OCL_String_Literal_Exp_Access is abstract;
206
207   not overriding function Create_Template_Parameter_Type
208    (Self : not null access OCL_Factory)
209       return AMF.OCL.Template_Parameter_Types.OCL_Template_Parameter_Type_Access is abstract;
210
211   not overriding function Create_Tuple_Literal_Exp
212    (Self : not null access OCL_Factory)
213       return AMF.OCL.Tuple_Literal_Exps.OCL_Tuple_Literal_Exp_Access is abstract;
214
215   not overriding function Create_Tuple_Literal_Part
216    (Self : not null access OCL_Factory)
217       return AMF.OCL.Tuple_Literal_Parts.OCL_Tuple_Literal_Part_Access is abstract;
218
219   not overriding function Create_Tuple_Type
220    (Self : not null access OCL_Factory)
221       return AMF.OCL.Tuple_Types.OCL_Tuple_Type_Access is abstract;
222
223   not overriding function Create_Type_Exp
224    (Self : not null access OCL_Factory)
225       return AMF.OCL.Type_Exps.OCL_Type_Exp_Access is abstract;
226
227   not overriding function Create_Unlimited_Natural_Literal_Exp
228    (Self : not null access OCL_Factory)
229       return AMF.OCL.Unlimited_Natural_Literal_Exps.OCL_Unlimited_Natural_Literal_Exp_Access is abstract;
230
231   not overriding function Create_Unspecified_Value_Exp
232    (Self : not null access OCL_Factory)
233       return AMF.OCL.Unspecified_Value_Exps.OCL_Unspecified_Value_Exp_Access is abstract;
234
235   not overriding function Create_Variable
236    (Self : not null access OCL_Factory)
237       return AMF.OCL.Variables.OCL_Variable_Access is abstract;
238
239   not overriding function Create_Variable_Exp
240    (Self : not null access OCL_Factory)
241       return AMF.OCL.Variable_Exps.OCL_Variable_Exp_Access is abstract;
242
243   not overriding function Create_Void_Type
244    (Self : not null access OCL_Factory)
245       return AMF.OCL.Void_Types.OCL_Void_Type_Access is abstract;
246
247end AMF.Factories.OCL_Factories;
248