Package it.cdq.model

Examples of it.cdq.model.Option


    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) {
View Full Code Here

TOP

Related Classes of it.cdq.model.Option

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.