summaryrefslogtreecommitdiffstats
path: root/src/syntaxParser/WhereClause.java
blob: 12eb97e1a612adcc3a16994be0139d540d8722ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package syntaxParser;
/* Author: Sorin Stancu-Mara
Date: 7 Feb 2007
*/

class WhereClause implements IParseTreeNode {
    private BooleanScalarExpr expr;
    public WhereClause(BooleanScalarExpr e) {
	expr = e;
    }
    public String toXML() {
	return "<where>" + expr.toXML() + "</where>";		    
    }
}