D:\CRM_Project\CRM_Metadata_Structure\NetBeamsICM_TestProject\ICM_DB_TestComponents\src\java\unstructured_data_idao\OneRow_ExcelCells.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package unstructured_data_idao;
 7 
 8 import java.util.ArrayList;
 9 
10 /**
11  *
12  * @author sameldin
13  * 
14  * To simplify communication and parameter passing, we decided to create a row of excel sheet as DAO 
15  * An excel sheet would an array list of these row DAO.
16  */
17 public class OneRow_ExcelCells {
18     
19     ArrayList <ExcelCellMap2DAO> classExcelOneRowDAO_ArrayList = null;
20     
21     public OneRow_ExcelCells(){
22 
23                 classExcelOneRowDAO_ArrayList  = new ArrayList<ExcelCellMap2DAO>();
24         
25     }
26     public ArrayList <ExcelCellMap2DAO> getOneRowDAOArrayList()
27     {
28         return(classExcelOneRowDAO_ArrayList);
29     }
30 }
31