if (parser.getOptionValue("maxhits") != null)
max_hits = Integer.parseInt(parser.getOptionValue("maxhits"));
// build record
RecordImpl prototype = new RecordImpl();
prototype.addValue(argv[1], argv[2]);
// search
Collection<Record> records = database.findCandidateMatches(prototype);
int hitno = 1;
for (Record record : records) {