* @param contents the string to match
* @return the Cell whose contents match the paramter, null if not found
*/
public LabelCell findLabelCell(String contents)
{
LabelCell cell = null;
boolean found = false;
for (int i = 0; i < sheet.getRows() && !found; i++)
{
Cell[] row = sheet.getRow(i);