[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Constraints / Operators / ConstraintOperator.cs
1 // ***********************************************************************
2 // Copyright (c) 2008 Charlie Poole
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 // 
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 // 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 // ***********************************************************************
23 #define PORTABLE
24 #define TIZEN
25 #define NUNIT_FRAMEWORK
26 #define NUNITLITE
27 #define NET_4_5
28 #define PARALLEL
29 namespace NUnit.Framework.Constraints
30 {
31     /// <summary>
32     /// The ConstraintOperator class is used internally by a
33     /// ConstraintBuilder to represent an operator that 
34     /// modifies or combines constraints. 
35     /// 
36     /// Constraint operators use left and right precedence
37     /// _values to determine whether the top operator on the
38     /// stack should be reduced before pushing a new operator.
39     /// </summary>
40     public abstract class ConstraintOperator
41     {
42         private object leftContext;
43         private object rightContext;
44
45         /// <summary>
46         /// The precedence value used when the operator
47         /// is about to be pushed to the stack.
48         /// </summary>
49         protected int left_precedence;
50
51         /// <summary>
52         /// The precedence value used when the operator
53         /// is on the top of the stack.
54         /// </summary>
55         protected int right_precedence;
56
57         /// <summary>
58         /// The syntax element preceding this operator
59         /// </summary>
60         public object LeftContext
61         {
62             get { return leftContext; }
63             set { leftContext = value; }
64         }
65
66         /// <summary>
67         /// The syntax element following this operator
68         /// </summary>
69         public object RightContext
70         {
71             get { return rightContext; }
72             set { rightContext = value; }
73         }
74
75         /// <summary>
76         /// The precedence value used when the operator
77         /// is about to be pushed to the stack.
78         /// </summary>
79         public virtual int LeftPrecedence
80         {
81             get { return left_precedence; }
82         }
83
84         /// <summary>
85         /// The precedence value used when the operator
86         /// is on the top of the stack.
87         /// </summary>
88         public virtual int RightPrecedence
89         {
90             get { return right_precedence; }
91         }
92
93         /// <summary>
94         /// Reduce produces a constraint from the operator and 
95         /// any arguments. It takes the arguments from the constraint 
96         /// stack and pushes the resulting constraint on it.
97         /// </summary>
98         /// <param name="stack"></param>
99         public abstract void Reduce(ConstraintBuilder.ConstraintStack stack);
100     }
101 }