/*
 * ListBuilder.java
 *
 * Created on May 24, 2006, 3:36 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package usda.weru.util.diff;

/**
 *
 * @author Joseph Levin
 */
public interface ListBuilder {
 
	/**
	 *
	 * @param engine
	 * @param a
	 * @param b
	 * @return
	 * @throws IncomparableObjectsException
	 */
	public DiffNode buildList(DiffEngine engine, Object a, Object b) throws IncomparableObjectsException; 
}
