1------------------------------------------------------------------------------
2--                                                                          --
3--                            Matreshka Project                             --
4--                                                                          --
5--                          Ada Modeling Framework                          --
6--                                                                          --
7--                        Runtime Library Component                         --
8--                                                                          --
9------------------------------------------------------------------------------
10--                                                                          --
11-- Copyright © 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: 3372 $ $Date: 2012-11-11 02:23:58 +0400 (Sun, 11 Nov 2012) $
43------------------------------------------------------------------------------
44--  This file is generated, don't edit it.
45------------------------------------------------------------------------------
46limited with AMF.UML.Namespaces;
47limited with AMF.UML.Properties;
48limited with AMF.UML.Value_Specifications;
49with League.Strings;
50
51package AMF.Utp.Coding_Rules is
52
53   pragma Preelaborate;
54
55   type Utp_Coding_Rule is limited interface;
56
57   type Utp_Coding_Rule_Access is
58     access all Utp_Coding_Rule'Class;
59   for Utp_Coding_Rule_Access'Storage_Size use 0;
60
61   not overriding function Get_Base_Value_Specification
62    (Self : not null access constant Utp_Coding_Rule)
63       return AMF.UML.Value_Specifications.UML_Value_Specification_Access is abstract;
64   --  Getter of CodingRule::base_ValueSpecification.
65   --
66
67   not overriding procedure Set_Base_Value_Specification
68    (Self : not null access Utp_Coding_Rule;
69     To   : AMF.UML.Value_Specifications.UML_Value_Specification_Access) is abstract;
70   --  Setter of CodingRule::base_ValueSpecification.
71   --
72
73   not overriding function Get_Base_Namespace
74    (Self : not null access constant Utp_Coding_Rule)
75       return AMF.UML.Namespaces.UML_Namespace_Access is abstract;
76   --  Getter of CodingRule::base_Namespace.
77   --
78
79   not overriding procedure Set_Base_Namespace
80    (Self : not null access Utp_Coding_Rule;
81     To   : AMF.UML.Namespaces.UML_Namespace_Access) is abstract;
82   --  Setter of CodingRule::base_Namespace.
83   --
84
85   not overriding function Get_Base_Property
86    (Self : not null access constant Utp_Coding_Rule)
87       return AMF.UML.Properties.UML_Property_Access is abstract;
88   --  Getter of CodingRule::base_Property.
89   --
90
91   not overriding procedure Set_Base_Property
92    (Self : not null access Utp_Coding_Rule;
93     To   : AMF.UML.Properties.UML_Property_Access) is abstract;
94   --  Setter of CodingRule::base_Property.
95   --
96
97   not overriding function Get_Coding
98    (Self : not null access constant Utp_Coding_Rule)
99       return League.Strings.Universal_String is abstract;
100   --  Getter of CodingRule::coding.
101   --
102
103   not overriding procedure Set_Coding
104    (Self : not null access Utp_Coding_Rule;
105     To   : League.Strings.Universal_String) is abstract;
106   --  Setter of CodingRule::coding.
107   --
108
109end AMF.Utp.Coding_Rules;
110