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: 2864 $ $Date: 2012-04-13 14:08:07 +0400 (Fri, 13 Apr 2012) $
43------------------------------------------------------------------------------
44with AMF.Internals.UML_Elements;
45with AMF.UML.Instance_Specifications;
46with AMF.UML.Slots;
47with AMF.UML.Structural_Features;
48with AMF.UML.Value_Specifications.Collections;
49with AMF.Visitors;
50
51package AMF.Internals.UML_Slots is
52
53   type UML_Slot_Proxy is
54     limited new AMF.Internals.UML_Elements.UML_Element_Proxy
55       and AMF.UML.Slots.UML_Slot with null record;
56
57   overriding function Get_Defining_Feature
58    (Self : not null access constant UML_Slot_Proxy)
59       return AMF.UML.Structural_Features.UML_Structural_Feature_Access;
60   --  Getter of Slot::definingFeature.
61   --
62   --  The structural feature that specifies the values that may be held by
63   --  the slot.
64
65   overriding procedure Set_Defining_Feature
66    (Self : not null access UML_Slot_Proxy;
67     To   : AMF.UML.Structural_Features.UML_Structural_Feature_Access);
68   --  Setter of Slot::definingFeature.
69   --
70   --  The structural feature that specifies the values that may be held by
71   --  the slot.
72
73   overriding function Get_Owning_Instance
74    (Self : not null access constant UML_Slot_Proxy)
75       return AMF.UML.Instance_Specifications.UML_Instance_Specification_Access;
76   --  Getter of Slot::owningInstance.
77   --
78   --  The instance specification that owns this slot.
79
80   overriding procedure Set_Owning_Instance
81    (Self : not null access UML_Slot_Proxy;
82     To   : AMF.UML.Instance_Specifications.UML_Instance_Specification_Access);
83   --  Setter of Slot::owningInstance.
84   --
85   --  The instance specification that owns this slot.
86
87   overriding function Get_Value
88    (Self : not null access constant UML_Slot_Proxy)
89       return AMF.UML.Value_Specifications.Collections.Ordered_Set_Of_UML_Value_Specification;
90   --  Getter of Slot::value.
91   --
92   --  The value or values corresponding to the defining feature for the
93   --  owning instance specification.
94
95   overriding procedure Enter_Element
96    (Self    : not null access constant UML_Slot_Proxy;
97     Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
98     Control : in out AMF.Visitors.Traverse_Control);
99   --  Dispatch call to corresponding subprogram of visitor interface.
100
101   overriding procedure Leave_Element
102    (Self    : not null access constant UML_Slot_Proxy;
103     Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
104     Control : in out AMF.Visitors.Traverse_Control);
105   --  Dispatch call to corresponding subprogram of visitor interface.
106
107   overriding procedure Visit_Element
108    (Self     : not null access constant UML_Slot_Proxy;
109     Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
110     Visitor  : in out AMF.Visitors.Abstract_Visitor'Class;
111     Control  : in out AMF.Visitors.Traverse_Control);
112   --  Dispatch call to corresponding subprogram of iterator interface.
113
114end AMF.Internals.UML_Slots;
115