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------------------------------------------------------------------------------
46with AMF.String_Collections;
47limited with AMF.UML.Behaviors;
48
49package AMF.Utp.Test_Logs is
50
51   pragma Preelaborate;
52
53   type Utp_Test_Log is limited interface;
54
55   type Utp_Test_Log_Access is
56     access all Utp_Test_Log'Class;
57   for Utp_Test_Log_Access'Storage_Size use 0;
58
59   not overriding function Get_Base_Behavior
60    (Self : not null access constant Utp_Test_Log)
61       return AMF.UML.Behaviors.UML_Behavior_Access is abstract;
62   --  Getter of TestLog::base_Behavior.
63   --
64
65   not overriding procedure Set_Base_Behavior
66    (Self : not null access Utp_Test_Log;
67     To   : AMF.UML.Behaviors.UML_Behavior_Access) is abstract;
68   --  Setter of TestLog::base_Behavior.
69   --
70
71   not overriding function Get_Tester
72    (Self : not null access constant Utp_Test_Log)
73       return AMF.String_Collections.Set_Of_String is abstract;
74   --  Getter of TestLog::tester.
75   --
76
77   not overriding function Get_Executed_At
78    (Self : not null access constant Utp_Test_Log)
79       return AMF.Optional_String is abstract;
80   --  Getter of TestLog::executedAt.
81   --
82
83   not overriding procedure Set_Executed_At
84    (Self : not null access Utp_Test_Log;
85     To   : AMF.Optional_String) is abstract;
86   --  Setter of TestLog::executedAt.
87   --
88
89   not overriding function Get_Duration
90    (Self : not null access constant Utp_Test_Log)
91       return AMF.Optional_String is abstract;
92   --  Getter of TestLog::duration.
93   --
94
95   not overriding procedure Set_Duration
96    (Self : not null access Utp_Test_Log;
97     To   : AMF.Optional_String) is abstract;
98   --  Setter of TestLog::duration.
99   --
100
101   not overriding function Get_Verdict
102    (Self : not null access constant Utp_Test_Log)
103       return AMF.Utp.Utp_Verdict is abstract;
104   --  Getter of TestLog::verdict.
105   --
106
107   not overriding procedure Set_Verdict
108    (Self : not null access Utp_Test_Log;
109     To   : AMF.Utp.Utp_Verdict) is abstract;
110   --  Setter of TestLog::verdict.
111   --
112
113   not overriding function Get_Verdict_Reason
114    (Self : not null access constant Utp_Test_Log)
115       return AMF.Optional_String is abstract;
116   --  Getter of TestLog::verdictReason.
117   --
118
119   not overriding procedure Set_Verdict_Reason
120    (Self : not null access Utp_Test_Log;
121     To   : AMF.Optional_String) is abstract;
122   --  Setter of TestLog::verdictReason.
123   --
124
125   not overriding function Get_Sut_Version
126    (Self : not null access constant Utp_Test_Log)
127       return AMF.Optional_String is abstract;
128   --  Getter of TestLog::sutVersion.
129   --
130
131   not overriding procedure Set_Sut_Version
132    (Self : not null access Utp_Test_Log;
133     To   : AMF.Optional_String) is abstract;
134   --  Setter of TestLog::sutVersion.
135   --
136
137end AMF.Utp.Test_Logs;
138