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

com.jpattern.orm.query.IExpressionElement Maven / Gradle / Ivy

package com.jpattern.orm.query;

import java.util.List;


/**
 * 
 * @author Francesco Cina
 *
 * 19/giu/2011
 */
public interface IExpressionElement extends IRenderableSqlObject, INameSolverConsumer {
	
	/**
	 * Append to the list all the values of the expression's elements
	 * @return
	 */
	void appendValues(List values);
	
}