Package fr.norsys.mapper.console.model

Examples of fr.norsys.mapper.console.model.ApplicationNameComparator


      applicationsNames = fileService.getFilesName(appliDirPath,
          xmlFileExt);
    } catch (FileException e) {
      log.error(e);
    }
    Collection applications = new TreeSet(new ApplicationNameComparator());
    Application a=null;
    for (Iterator i = applicationsNames.iterator(); i.hasNext();) {
      a=new Application((String) i.next());
      applications.add(a);
    }
View Full Code Here

TOP

Related Classes of fr.norsys.mapper.console.model.ApplicationNameComparator

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.