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--  An activity partition is a kind of activity group for identifying actions
47--  that have some characteristic in common.
48------------------------------------------------------------------------------
49limited with AMF.UML.Activity_Edges.Collections;
50with AMF.UML.Activity_Groups;
51limited with AMF.UML.Activity_Nodes.Collections;
52limited with AMF.UML.Activity_Partitions.Collections;
53limited with AMF.UML.Elements;
54
55package AMF.UML.Activity_Partitions is
56
57   pragma Preelaborate;
58
59   type UML_Activity_Partition is limited interface
60     and AMF.UML.Activity_Groups.UML_Activity_Group;
61
62   type UML_Activity_Partition_Access is
63     access all UML_Activity_Partition'Class;
64   for UML_Activity_Partition_Access'Storage_Size use 0;
65
66   not overriding function Get_Edge
67    (Self : not null access constant UML_Activity_Partition)
68       return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge is abstract;
69   --  Getter of ActivityPartition::edge.
70   --
71   --  Edges immediately contained in the group.
72
73   not overriding function Get_Is_Dimension
74    (Self : not null access constant UML_Activity_Partition)
75       return Boolean is abstract;
76   --  Getter of ActivityPartition::isDimension.
77   --
78   --  Tells whether the partition groups other partitions along a dimension.
79
80   not overriding procedure Set_Is_Dimension
81    (Self : not null access UML_Activity_Partition;
82     To   : Boolean) is abstract;
83   --  Setter of ActivityPartition::isDimension.
84   --
85   --  Tells whether the partition groups other partitions along a dimension.
86
87   not overriding function Get_Is_External
88    (Self : not null access constant UML_Activity_Partition)
89       return Boolean is abstract;
90   --  Getter of ActivityPartition::isExternal.
91   --
92   --  Tells whether the partition represents an entity to which the
93   --  partitioning structure does not apply.
94
95   not overriding procedure Set_Is_External
96    (Self : not null access UML_Activity_Partition;
97     To   : Boolean) is abstract;
98   --  Setter of ActivityPartition::isExternal.
99   --
100   --  Tells whether the partition represents an entity to which the
101   --  partitioning structure does not apply.
102
103   not overriding function Get_Node
104    (Self : not null access constant UML_Activity_Partition)
105       return AMF.UML.Activity_Nodes.Collections.Set_Of_UML_Activity_Node is abstract;
106   --  Getter of ActivityPartition::node.
107   --
108   --  Nodes immediately contained in the group.
109
110   not overriding function Get_Represents
111    (Self : not null access constant UML_Activity_Partition)
112       return AMF.UML.Elements.UML_Element_Access is abstract;
113   --  Getter of ActivityPartition::represents.
114   --
115   --  An element constraining behaviors invoked by nodes in the partition.
116
117   not overriding procedure Set_Represents
118    (Self : not null access UML_Activity_Partition;
119     To   : AMF.UML.Elements.UML_Element_Access) is abstract;
120   --  Setter of ActivityPartition::represents.
121   --
122   --  An element constraining behaviors invoked by nodes in the partition.
123
124   not overriding function Get_Subpartition
125    (Self : not null access constant UML_Activity_Partition)
126       return AMF.UML.Activity_Partitions.Collections.Set_Of_UML_Activity_Partition is abstract;
127   --  Getter of ActivityPartition::subpartition.
128   --
129   --  Partitions immediately contained in the partition.
130
131   not overriding function Get_Super_Partition
132    (Self : not null access constant UML_Activity_Partition)
133       return AMF.UML.Activity_Partitions.UML_Activity_Partition_Access is abstract;
134   --  Getter of ActivityPartition::superPartition.
135   --
136   --  Partition immediately containing the partition.
137
138   not overriding procedure Set_Super_Partition
139    (Self : not null access UML_Activity_Partition;
140     To   : AMF.UML.Activity_Partitions.UML_Activity_Partition_Access) is abstract;
141   --  Setter of ActivityPartition::superPartition.
142   --
143   --  Partition immediately containing the partition.
144
145end AMF.UML.Activity_Partitions;
146