Package com.ilegra.core

Source Code of com.ilegra.core.ReadDataFile

package com.ilegra.core;

import com.ilegra.domain.DomainDataFile;
import com.ilegra.domain.DomainSalesman;

public class ReadDataFile {

  /**
   * Read a row information about some {@link DomainDataFile}.
   *
   * @param row Row to be read
   * @return {@link Boolean} TRUE if success
   */
  public DomainDataFile readRow(String[] row) {   
    DomainSalesman domain = new DomainSalesman();
    domain.parse(row);
    return domain;
  }
}
TOP

Related Classes of com.ilegra.core.ReadDataFile

TOP
Copyright © 2018 www.massapi.com. 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.