public RelationalType MakeRelational(RelationalOperator op, ArithmeticExpression lhs, ArithmeticExpression rhs) { RelationalType newRelational = new RelationalType(); newRelational.AddLHSArithmeticExpression(lhs); newRelational.AddRelationalOperator(op); newRelational.AddRHSArithmeticExpression(rhs); return newRelational; }
public RHSArithmeticExpressionEnumerator(RelationalType par) { parent = par; nIndex = -1; }
public RelationalOperatorEnumerator(RelationalType par) { parent = par; nIndex = -1; }
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); }