package org.trianacode.shiwaall.collection;
import java.util.List;
// TODO: Auto-generated Javadoc
/**
* The Class Cross.
*
* @param <C> the generic type
* @author Andrew Harrison
* @version 1.0.0 Jul 15, 2010
*/
public class Cross<C> extends CollectionMapper {
/**
* Instantiates a new cross.
*
* @param listA the list a
* @param listB the list b
*/
public Cross(List<? extends CollectionElement<C>> listA, List<? extends CollectionElement<C>> listB) {
super(listA, listB, 1, listB.size(), listB.size());
}
}