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 information flow specifies that one or more information items
47--  circulates from its sources to its targets. Information flows require some
48--  kind of information channel for transmitting information items from the
49--  source to the destination. An information channel is represented in
50--  various ways depending on the nature of its sources and targets. It may be
51--  represented by connectors, links, associations, or even dependencies. For
52--  example, if the source and destination are parts in some composite
53--  structure such as a collaboration, then the information channel is likely
54--  to be represented by a connector between them. Or, if the source and
55--  target are objects (which are a kind of instance specification), they may
56--  be represented by a link that joins the two, and so on.
57------------------------------------------------------------------------------
58limited with AMF.UML.Activity_Edges.Collections;
59limited with AMF.UML.Classifiers.Collections;
60limited with AMF.UML.Connectors.Collections;
61with AMF.UML.Directed_Relationships;
62limited with AMF.UML.Messages.Collections;
63limited with AMF.UML.Named_Elements.Collections;
64with AMF.UML.Packageable_Elements;
65limited with AMF.UML.Relationships.Collections;
66
67package AMF.UML.Information_Flows is
68
69   pragma Preelaborate;
70
71   type UML_Information_Flow is limited interface
72     and AMF.UML.Directed_Relationships.UML_Directed_Relationship
73     and AMF.UML.Packageable_Elements.UML_Packageable_Element;
74
75   type UML_Information_Flow_Access is
76     access all UML_Information_Flow'Class;
77   for UML_Information_Flow_Access'Storage_Size use 0;
78
79   not overriding function Get_Conveyed
80    (Self : not null access constant UML_Information_Flow)
81       return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is abstract;
82   --  Getter of InformationFlow::conveyed.
83   --
84   --  Specifies the information items that may circulate on this information
85   --  flow.
86
87   not overriding function Get_Information_Source
88    (Self : not null access constant UML_Information_Flow)
89       return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is abstract;
90   --  Getter of InformationFlow::informationSource.
91   --
92   --  Defines from which source the conveyed InformationItems are initiated.
93
94   not overriding function Get_Information_Target
95    (Self : not null access constant UML_Information_Flow)
96       return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is abstract;
97   --  Getter of InformationFlow::informationTarget.
98   --
99   --  Defines to which target the conveyed InformationItems are directed.
100
101   not overriding function Get_Realization
102    (Self : not null access constant UML_Information_Flow)
103       return AMF.UML.Relationships.Collections.Set_Of_UML_Relationship is abstract;
104   --  Getter of InformationFlow::realization.
105   --
106   --  Determines which Relationship will realize the specified flow
107
108   not overriding function Get_Realizing_Activity_Edge
109    (Self : not null access constant UML_Information_Flow)
110       return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge is abstract;
111   --  Getter of InformationFlow::realizingActivityEdge.
112   --
113   --  Determines which ActivityEdges will realize the specified flow.
114
115   not overriding function Get_Realizing_Connector
116    (Self : not null access constant UML_Information_Flow)
117       return AMF.UML.Connectors.Collections.Set_Of_UML_Connector is abstract;
118   --  Getter of InformationFlow::realizingConnector.
119   --
120   --  Determines which Connectors will realize the specified flow.
121
122   not overriding function Get_Realizing_Message
123    (Self : not null access constant UML_Information_Flow)
124       return AMF.UML.Messages.Collections.Set_Of_UML_Message is abstract;
125   --  Getter of InformationFlow::realizingMessage.
126   --
127   --  Determines which Messages will realize the specified flow.
128
129end AMF.UML.Information_Flows;
130