private void loadCellImportExportInfo()
{
CellImportExportInfoSaver saverInstance = null;
try
{
XMLBeanReader doc = new XMLBeanReader();
doc.load(new ApplicationFiles().getCellImportExportSelectionsFile());
Iterator it = doc.iterator();
if (it.hasNext())
{
saverInstance = (CellImportExportInfoSaver) it.next();
}
}