use of utils.LoadDataProjects in project uPMT by coco35700.
the class Main method initProjects.
/**
* Method used to load all the projects
*/
private void initProjects() {
this.projects = new LinkedList<Project>();
LoadDataProjects dc = LoadDataProjects.instance();
dc.setProjets(projects);
if (Utils.checkRecovery()) {
this.mainViewController.alertRecovery();
}
Utils.loadProjects(projects, this);
}
Aggregations