1------------------------------------------------------------------------------
2--                                                                          --
3--                            Matreshka Project                             --
4--                                                                          --
5--                          Ada Modeling Framework                          --
6--                                                                          --
7--                        Runtime Library Component                         --
8--                                                                          --
9------------------------------------------------------------------------------
10--                                                                          --
11-- Copyright © 2011-2012, 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: 2714 $ $Date: 2012-03-24 10:29:08 +0400 (Sat, 24 Mar 2012) $
43------------------------------------------------------------------------------
44--  This file is generated, don't edit it.
45------------------------------------------------------------------------------
46--  A template parameter exposes a parameterable element as a formal template
47--  parameter of a template.
48------------------------------------------------------------------------------
49with AMF.UML.Elements;
50limited with AMF.UML.Parameterable_Elements;
51limited with AMF.UML.Template_Signatures;
52
53package AMF.UML.Template_Parameters is
54
55   pragma Preelaborate;
56
57   type UML_Template_Parameter is limited interface
58     and AMF.UML.Elements.UML_Element;
59
60   type UML_Template_Parameter_Access is
61     access all UML_Template_Parameter'Class;
62   for UML_Template_Parameter_Access'Storage_Size use 0;
63
64   not overriding function Get_Default
65    (Self : not null access constant UML_Template_Parameter)
66       return AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access is abstract;
67   --  Getter of TemplateParameter::default.
68   --
69   --  The element that is the default for this formal template parameter.
70
71   not overriding procedure Set_Default
72    (Self : not null access UML_Template_Parameter;
73     To   : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access) is abstract;
74   --  Setter of TemplateParameter::default.
75   --
76   --  The element that is the default for this formal template parameter.
77
78   not overriding function Get_Owned_Default
79    (Self : not null access constant UML_Template_Parameter)
80       return AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access is abstract;
81   --  Getter of TemplateParameter::ownedDefault.
82   --
83   --  The element that is owned by this template parameter for the purpose of
84   --  providing a default.
85
86   not overriding procedure Set_Owned_Default
87    (Self : not null access UML_Template_Parameter;
88     To   : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access) is abstract;
89   --  Setter of TemplateParameter::ownedDefault.
90   --
91   --  The element that is owned by this template parameter for the purpose of
92   --  providing a default.
93
94   not overriding function Get_Owned_Parametered_Element
95    (Self : not null access constant UML_Template_Parameter)
96       return AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access is abstract;
97   --  Getter of TemplateParameter::ownedParameteredElement.
98   --
99   --  The element that is owned by this template parameter.
100
101   not overriding procedure Set_Owned_Parametered_Element
102    (Self : not null access UML_Template_Parameter;
103     To   : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access) is abstract;
104   --  Setter of TemplateParameter::ownedParameteredElement.
105   --
106   --  The element that is owned by this template parameter.
107
108   not overriding function Get_Parametered_Element
109    (Self : not null access constant UML_Template_Parameter)
110       return AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access is abstract;
111   --  Getter of TemplateParameter::parameteredElement.
112   --
113   --  The element exposed by this template parameter.
114
115   not overriding procedure Set_Parametered_Element
116    (Self : not null access UML_Template_Parameter;
117     To   : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access) is abstract;
118   --  Setter of TemplateParameter::parameteredElement.
119   --
120   --  The element exposed by this template parameter.
121
122   not overriding function Get_Signature
123    (Self : not null access constant UML_Template_Parameter)
124       return AMF.UML.Template_Signatures.UML_Template_Signature_Access is abstract;
125   --  Getter of TemplateParameter::signature.
126   --
127   --  The template signature that owns this template parameter.
128
129   not overriding procedure Set_Signature
130    (Self : not null access UML_Template_Parameter;
131     To   : AMF.UML.Template_Signatures.UML_Template_Signature_Access) is abstract;
132   --  Setter of TemplateParameter::signature.
133   --
134   --  The template signature that owns this template parameter.
135
136end AMF.UML.Template_Parameters;
137