All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.orm.query.clause.where.AndExpressionElement Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.query.clause.where;


/**
 * 
 * @author Francesco Cina
 *
 * 26/giu/2011
 */
public class AndExpressionElement extends BinaryExpressionElement {

	/**
	 * 
	 */
	

	public AndExpressionElement(ExpressionElement expOne, ExpressionElement expTwo) {
		super(expOne, expTwo, "AND ");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy