public RelationalType MakeRelational(RelationalOperator op, ArithmeticExpression lhs, ArithmeticExpression rhs)
        {
            RelationalType newRelational = new RelationalType();

            newRelational.AddLHSArithmeticExpression(lhs);
            newRelational.AddRelationalOperator(op);
            newRelational.AddRHSArithmeticExpression(rhs);

            return newRelational;

        }
Beispiel #2
0
 public RHSArithmeticExpressionEnumerator(RelationalType par)
 {
     parent = par;
     nIndex = -1;
 }
Beispiel #3
0
 public RelationalOperatorEnumerator(RelationalType par)
 {
     parent = par;
     nIndex = -1;
 }
Beispiel #4
0
 public void ReplaceRelationalAt(RelationalType newValue, int index)
 {
     ReplaceDomElementAt("", "Relational", index, newValue);
 }
Beispiel #5
0
 public void InsertRelationalAt(RelationalType newValue, int index)
 {
     InsertDomElementAt("", "Relational", index, newValue);
 }
Beispiel #6
0
 public void AddRelational(RelationalType newValue)
 {
     AppendDomElement("", "Relational", newValue);
 }
		public void ReplaceRelationalAt(RelationalType newValue, int index)
		{
			ReplaceDomElementAt("", "Relational", index, newValue);
		}
		public void InsertRelationalAt(RelationalType newValue, int index)
		{
			InsertDomElementAt("", "Relational", index, newValue);
		}
		public void AddRelational(RelationalType newValue)
		{
			AppendDomElement("", "Relational", newValue);
		}
			public RHSArithmeticExpressionEnumerator(RelationalType par) 
			{
				parent = par;
				nIndex = -1;
			}
			public RelationalOperatorEnumerator(RelationalType par) 
			{
				parent = par;
				nIndex = -1;
			}