예제 #1
0
		public RelationalType MakeRelational(RelationalOperator op, ArithmeticExpression lhs, ArithmeticExpression rhs)
        {
            RelationalType newRelational = new RelationalType();

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

            return newRelational;

        }
예제 #2
0
 public RHSArithmeticExpressionEnumerator(RelationalType par)
 {
     parent = par;
     nIndex = -1;
 }
예제 #3
0
 public RelationalOperatorEnumerator(RelationalType par)
 {
     parent = par;
     nIndex = -1;
 }
예제 #4
0
 public void ReplaceRelationalAt(RelationalType newValue, int index)
 {
     ReplaceDomElementAt("", "Relational", index, newValue);
 }
예제 #5
0
 public void InsertRelationalAt(RelationalType newValue, int index)
 {
     InsertDomElementAt("", "Relational", index, newValue);
 }
예제 #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);
		}
예제 #10
0
			public RHSArithmeticExpressionEnumerator(RelationalType par) 
			{
				parent = par;
				nIndex = -1;
			}
예제 #11
0
			public RelationalOperatorEnumerator(RelationalType par) 
			{
				parent = par;
				nIndex = -1;
			}