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.Elements.Collections;
46with AMF.UML.Packages;
47with AMF.UML.Profile_Applications;
48with AMF.UML.Profiles;
49with AMF.Visitors;
50
51package AMF.Internals.UML_Profile_Applications is
52
53   type UML_Profile_Application_Proxy is
54     limited new AMF.Internals.UML_Elements.UML_Element_Proxy
55       and AMF.UML.Profile_Applications.UML_Profile_Application with null record;
56
57   overriding function Get_Applied_Profile
58    (Self : not null access constant UML_Profile_Application_Proxy)
59       return AMF.UML.Profiles.UML_Profile_Access;
60   --  Getter of ProfileApplication::appliedProfile.
61   --
62   --  References the Profiles that are applied to a Package through this
63   --  ProfileApplication.
64
65   overriding procedure Set_Applied_Profile
66    (Self : not null access UML_Profile_Application_Proxy;
67     To   : AMF.UML.Profiles.UML_Profile_Access);
68   --  Setter of ProfileApplication::appliedProfile.
69   --
70   --  References the Profiles that are applied to a Package through this
71   --  ProfileApplication.
72
73   overriding function Get_Applying_Package
74    (Self : not null access constant UML_Profile_Application_Proxy)
75       return AMF.UML.Packages.UML_Package_Access;
76   --  Getter of ProfileApplication::applyingPackage.
77   --
78   --  The package that owns the profile application.
79
80   overriding procedure Set_Applying_Package
81    (Self : not null access UML_Profile_Application_Proxy;
82     To   : AMF.UML.Packages.UML_Package_Access);
83   --  Setter of ProfileApplication::applyingPackage.
84   --
85   --  The package that owns the profile application.
86
87   overriding function Get_Is_Strict
88    (Self : not null access constant UML_Profile_Application_Proxy)
89       return Boolean;
90   --  Getter of ProfileApplication::isStrict.
91   --
92   --  Specifies that the Profile filtering rules for the metaclasses of the
93   --  referenced metamodel shall be strictly applied.
94
95   overriding procedure Set_Is_Strict
96    (Self : not null access UML_Profile_Application_Proxy;
97     To   : Boolean);
98   --  Setter of ProfileApplication::isStrict.
99   --
100   --  Specifies that the Profile filtering rules for the metaclasses of the
101   --  referenced metamodel shall be strictly applied.
102
103   overriding function Get_Source
104    (Self : not null access constant UML_Profile_Application_Proxy)
105       return AMF.UML.Elements.Collections.Set_Of_UML_Element;
106   --  Getter of DirectedRelationship::source.
107   --
108   --  Specifies the sources of the DirectedRelationship.
109
110   overriding function Get_Target
111    (Self : not null access constant UML_Profile_Application_Proxy)
112       return AMF.UML.Elements.Collections.Set_Of_UML_Element;
113   --  Getter of DirectedRelationship::target.
114   --
115   --  Specifies the targets of the DirectedRelationship.
116
117   overriding function Get_Related_Element
118    (Self : not null access constant UML_Profile_Application_Proxy)
119       return AMF.UML.Elements.Collections.Set_Of_UML_Element;
120   --  Getter of Relationship::relatedElement.
121   --
122   --  Specifies the elements related by the Relationship.
123
124   overriding procedure Enter_Element
125    (Self    : not null access constant UML_Profile_Application_Proxy;
126     Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
127     Control : in out AMF.Visitors.Traverse_Control);
128   --  Dispatch call to corresponding subprogram of visitor interface.
129
130   overriding procedure Leave_Element
131    (Self    : not null access constant UML_Profile_Application_Proxy;
132     Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
133     Control : in out AMF.Visitors.Traverse_Control);
134   --  Dispatch call to corresponding subprogram of visitor interface.
135
136   overriding procedure Visit_Element
137    (Self     : not null access constant UML_Profile_Application_Proxy;
138     Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
139     Visitor  : in out AMF.Visitors.Abstract_Visitor'Class;
140     Control  : in out AMF.Visitors.Traverse_Control);
141   --  Dispatch call to corresponding subprogram of iterator interface.
142
143end AMF.Internals.UML_Profile_Applications;
144