Package ke.go.moh.oec.mpi.list

Examples of ke.go.moh.oec.mpi.list.PersonList


        //
        // Load the site list in a separate thread from loding the person list.
        // This is done to speed up loading time.
        Thread loadSitesThread = new Thread(siteList);
        loadSitesThread.start();
        personList = new PersonList();
        personList.load();
        try {
            loadSitesThread.join();
        } catch (InterruptedException ex) {
            Logger.getLogger(Mpi.class.getName()).log(Level.SEVERE, null, ex);
View Full Code Here

TOP

Related Classes of ke.go.moh.oec.mpi.list.PersonList

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.