String[] nextLine = null;
List<Option> list = new ArrayList<Option>();
try {
while ((nextLine = reader.readNext()) != null) {
Option opt = new Option();
String candidate = nextLine[0];
opt.setCandidate("Y".equalsIgnoreCase(candidate));
opt.setOperator(nextLine[1]);
opt.setOrigin(nextLine[2]);
opt.setOriginLabel(nextLine[3]);
opt.setDestination(nextLine[4]);
opt.setDestinationLabel(nextLine[5]);
list.add(opt);
logger.debug("line :" + opt);
}
} catch (Exception e) {